import time
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
#from Exercise1 import *
#from Exercise2 import *
#from Exercise3 import *
from Exercise4 import *
"""
Practicing Python
"""
if __name__ == '__main__':
"""
Exercise 1. Write a class that creates instances of all the components and
check the connections etc.
"""
# Create an instance of your class from Exercise1
# myfancyexercise1 = Exercise1()
# call the test method of exercise1 class
# myfancyexercise1.testAll()
"""
Exercise 2. Create a rudimentary Dice class
"""
# mygame = FancyDiceGame()
# mygame.play()
"""
Exercise 3. Control the motor using the Potentiometer
"""
# mc = ServoControl()
# mc.control()
"""
Exercise 4. Put things together into a simple "ping-pong" game
(likely not going to happen today - but now you have all the
"""