import tm1637
from machine import Pin
from utime import sleep
mydisplay = tm1637.TM1637(clk=Pin(0), dio=Pin(1))
while True:
# show a word
mydisplay.show("hero")
sleep(1)
#blank the screen
mydisplay.show("")
sleep(1)
#show scrolling text
mydisplay.scroll("Ro-Hitman")
sleep(1)
#show temperature
mydisplay.temperature(45)
sleep(1)
#adjust the brightnees to make it loewr
for x in range(8):
mydisplay.brightness(x)
print(x)