from machine import Pin, SoftI2C
from ssd1306 import SSD1306_I2C
i2c = SoftI2C(sda = Pin(12), scl = Pin(13))
oled = SSD1306_I2C(128, 64, i2c, addr = 0x3c)
oled.text('HELLO', 10, 30)
oled.show()
from machine import Pin, SoftI2C
from ssd1306 import SSD1306_I2C
i2c = SoftI2C(sda = Pin(12), scl = Pin(13))
oled = SSD1306_I2C(128, 64, i2c, addr = 0x3c)
oled.text('HELLO', 10, 30)
oled.show()