from machine import Pin
from utime import sleep
# Comment: Blinks a LED
print("DEBUG: Starting Program")
counter = 0
led = Pin(5, Pin.OUT)
while True:
led.on()
sleep(0.5)
counter += 1
print("%d) DEBUG: Checking LED Status: %d" % (counter, led.value()))
led.off()
counter += 1
print(f"{counter}) DEBUG: Checking LED Status: {led.value()}")
sleep(0.5)