from machine import Pin
import time
# Initialize GP15 as an output pin to control the LED via the breadboard
led = Pin(15, Pin.OUT)
# Infinite loop to continuously blink the LED
while True:
led.value(1) # Send 3.3V to GP15 to turn the LED ON
time.sleep(1) # Keep it ON for 1 second
led.value(0) # Send 0V to GP15 to turn the LED OFF
time.sleep(1) # Keep it OFF for 1 second