from time import sleep
from machine import Pin
from machine import I2C
import ssd1306
i2c = I2C(scl=Pin(22), sda=Pin(21))
oled_width = 128
oled_height = 64
oled = ssd1306.SSD1306_I2C(oled_width, oled_height, i2c)
oled.fill(0)
oled.text('Display', 0, 0)
oled.text('OLED', 0, 20)
oled.text('Micro Python', 0, 35)
oled.text('Esp 32', 0,50)
oled.show()