from machine import Pin, I2C
import ssd1306
import time
i2c = I2C(0, scl=Pin(22), sda=Pin(21))
oled = ssd1306.SSD1306_I2C(128, 64, i2c)
while True:
for count in range(100):
oled.fill(0)
oled.text("COUNT:", 0, 10)
oled.text(str(count), 50, 30)
oled.show()
time.sleep(1)