import time
from Lights import *
from LightStrip import *
from Displays import LCDDisplay
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
red = Light(15, 'Red LED')
green = Light(14, 'Green LED')
lightstrip = LightStrip(pin=2, numleds=16, brightness=0.5)
d = LCDDisplay(sda=0, scl=1, i2cid=0)
lights = [red, green, red, green, lightstrip, red, red, green, lightstrip]
for l in lights:
d.showText(l._name)
l.on()
time.sleep(0.5)
l.off()
d.clear()
time.sleep(0.5)