import time
import machine
import utime
from Lights import *
from Buzzer import *
from Displays import *
"""
myled = Light(25, "Internal LED")
myled.on()
utime.sleep(1)
myled.off()
extled = DimLight(22, "Blue LED")
extled.on()
utime.sleep(1)
extled.setBrightness(100)
utime.sleep(1)
extled.off()
extled.upDown()
mybuzzer = PassiveBuzzer(16)
mybuzzer.beep()
"""
mydisplay = LCDDisplay(sda=0, scl=1, i2cid=0)
mydisplay.scroll('Python is fun for everybody!', row=0)