import time
time.sleep(0.1) # Wait for USB to become ready

print("Hello, Pi Pico!")

from Lights import *
from Button import *
from Log import *
from LightStrip import *
from Buzzer import *
from Displays import *

class RainbowLight(LightStrip):
    """
    A subclass of Lightstrip that shows colors of the rainbow when turned on
    """

    def __init__(self, pin=2, name='Neopixel', numleds=16, brightness=0.5):
        """ Call superclass's init method to initialize the light strip """

        super().__init__(pin, name, numleds, brightness)

    def on(self):
        """ 
        Overriding the superclass method On by setting different colors to different pixels 
        """

        # Identify the separte light bulbs (pixels)
        colors = [PURPLE, INDIGO, BLUE, GREEN, YELLOW, ORANGE, RED]
        # Assign a color value to each of the pixels - put these colors on the pixels
        for colorindex in range(0,7):
            self.setPixel(colorindex , colors[colorindex], show=False)

        # Show the colors
        self.show()
        
class Lab1:
    """
    Lab 1 class - encapsulates all the hardware lab 1 uses
    """

    def __init__(self):
        """
        Create instances of all the classes in variables
        """

        self.redled = Light(pin=20, name="Red LED")
        self.bluebutton = Button(15, "Blue", handler = self)
        self.yellowbutton = Button(14, "Yellow", handler = self)
        self.lightstrip = RainbowLight(pin=2, name="Light strip", numleds=8, brightness=0.5)
        self.buzzer = PassiveBuzzer(pin=17, name="Buzzer")
        self.display = LCDDisplay(sda=0, scl=1)

    def buttonPressed(self, name):
        """
        ButtonPressed handler
        """
        
        if name == 'Blue':
            self.redled.on()
            self.buzzer.play(200)
            self.display.showText("LED On")
        elif name == 'Yellow':
            self.lightstrip.on()
            self.buzzer.play(1000)
            self.display.showText("LightStrip On")

    def buttonReleased(self, name):
        self.redled.off()
        self.lightstrip.off()
        self.buzzer.stop()
        self.display.clear()

    def run(self):
        while True:
            time.sleep(1)


mylab = Lab1()
mylab.run()
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
led1:A
led1:C
r1:1
r1:2
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL
ring1:GND
ring1:VCC
ring1:DIN
ring1:DOUT
bz1:1
bz1:2