import time, machine
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
led = machine.Pin(6,machine.Pin.OUT)
while True:
led.toggle()
time.sleep(1)
import time, machine
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico!")
led = machine.Pin(6,machine.Pin.OUT)
while True:
led.toggle()
time.sleep(1)