from machine import Pin
from time import sleep

#se declara el pin 0 como entrada y activa la resistencia pull down

boton = Pin(0, Pin.IN, Pin.PULL_DOWN)
led = Pin(15, Pin.OUT)

while True:
    estado = boton.value() #leer el estado del boton
    if (estado == 0):
        led.value(1)
        else:
            led.value(0)
$abcdeabcde151015202530fghijfghij
Loading
pi-pico-w