from machine import Pin
import time

# Initialize the onboard LED on GPIO 19
led = Pin(19, Pin.OUT)
d=2.5
# Blink the LED
while True:
    led.off()   # Turn on the LED
    time.sleep(d)  # Wait for 1 second
    led.on()   # Turn off the LED
    time.sleep(d)  # Wait for 1 second

BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT