import time
time.sleep(0.1) # Wait for USB to become ready
from Displays import LCDDisplay
from LightStrip import LightStrip
from Buzzer import Buzzer
print("Hello, Pi Pico!")
# Used ChatGPT for development
# Message to display on LCD screen
welcomeMsg = LCDDisplay(sda=0, scl=1, i2cid=0)
welcomeMsg.showText("Welcome to Color Matching!")
time.sleep(3)
from GameController import GameController
mygame = GameController()
while True:
mygame.startGame()
#Input logic for end of game when game is beaten
time.sleep(1)