from machine import Pin, SoftI2C, RTC
i2c = SoftI2C(sda = Pin(12),scl = Pin(13))
from ssd1306 import SSD1306_I2C
oled = SSD1306_I2C(128,64,i2c,addr = 0x3c)
i3c = SoftI2C(sda = Pin(17),scl = (14))
oled.text("hello,world",10,30)
oled.show()
from machine import Pin, SoftI2C, RTC
i2c = SoftI2C(sda = Pin(12),scl = Pin(13))
from ssd1306 import SSD1306_I2C
oled = SSD1306_I2C(128,64,i2c,addr = 0x3c)
i3c = SoftI2C(sda = Pin(17),scl = (14))
oled.text("hello,world",10,30)
oled.show()