# Picozero as a library import module is included as a python file
# As Woki was having issues importing it by default
# AS part of the pico hardware steps this is imported without needing to include the file
print("Hello World")
# Declare libraries needed below
from picozero import pico_led
from picozero import LED
import utime
print("Libraries Declared")
#Declare GPIO usage
blue_led = LED(21)
print("GPIO Pins Declared")
while True:
print("Blink")
blue_led.blink()
utime.sleep(5)