from machine import Pin
import time
# External LED connected to GPIO 15
led = Pin(15, Pin.OUT)
while True:
led.on() # LED ON
time.sleep(1)
led.off() # LED OFF
time.sleep(1)
from machine import Pin
import time
# External LED connected to GPIO 15
led = Pin(15, Pin.OUT)
while True:
led.on() # LED ON
time.sleep(1)
led.off() # LED OFF
time.sleep(1)