from machine import Pin
from utime import sleep

led = Pin(17, Pin.OUT)
while True:
  led.toggle()
  sleep(1)
Loading
pi-pico-w