from machine import Pin
from utime import sleep
import ssd1306
import machine
i2c = machine.I2C(scl=Pin(4), sda=Pin(5))
oled = ssd1306.SSD1306_I2C(128, 64, i2c)
oled.fill(0)
oled.text(' ', 0, 10)
oled.text('What the fuck', 0, 20)
oled.show()
from machine import Pin
from utime import sleep
import ssd1306
import machine
i2c = machine.I2C(scl=Pin(4), sda=Pin(5))
oled = ssd1306.SSD1306_I2C(128, 64, i2c)
oled.fill(0)
oled.text(' ', 0, 10)
oled.text('What the fuck', 0, 20)
oled.show()