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("COOL")
sleep(1)
#blank the screen
mydisplay.show(" ")
sleep (1)
#show scrolling text
mydisplay.scroll("Amaan Shaikh")
sleep(1)
#show temperature
mydisplay.temperature(82)
sleep(1)
#adjust the brightness to make it loewna
for x in range(8):
mydisplay.brightness(x)
print(x)
sleep(1)