from machine import Pin,SoftI2C
i2c = SoftI2C(sda = Pin(27), scl = Pin(26))

from ssd1306 import SSD1306_I2C
oled = SSD1306_I2C(128, 64, i2c, addr = 0x3c)

oled.text("Hello,everbody", 10, 30)
oled.show()