from machine import Pin
import time
p0 = Pin(22, Pin.OUT)
while(1):
p0.on()
time.sleep(1) # Wait for USB to become ready
p0.off()
time.sleep(1) # Wait for USB to become ready
print("Hello, Pi Pico!")
from machine import Pin
import time
p0 = Pin(22, Pin.OUT)
while(1):
p0.on()
time.sleep(1) # Wait for USB to become ready
p0.off()
time.sleep(1) # Wait for USB to become ready
print("Hello, Pi Pico!")