from machine import Pin, I2C
from ssd1306 import ssd1306_I2C
from time import sleep
sleep(1.5)
WIDTH = 128
HEIGHT = 64
I2C = I2C(0,sda=Pin(16),sdl(Pin(17),freq=100000)
oled = ssd1306_I2C(WIDTH,HEIGHT,i2c)
oled.fill(0)
oled.text("OLed", 0, 0)
oled.show()