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