from machine import Pin
import time
# Define the LED pin
led = Pin(15, Pin.OUT)
while True:
led.value(1) # Turn the LED on
time.sleep(1) # Wait for 1 second
led.value(0) # Turn the LED off
time.sleep(1) # Wait for 1 second
from machine import Pin
import time
# Define the LED pin
led = Pin(15, Pin.OUT)
while True:
led.value(1) # Turn the LED on
time.sleep(1) # Wait for 1 second
led.value(0) # Turn the LED off
time.sleep(1) # Wait for 1 second