from machine import Pin
import time
led = Pin(2,Pin.OUT) # Light the onboard LED
while True:
led.on()
time.sleep(2)
led.off()
time.sleep(1)from machine import Pin
import time
led = Pin(2,Pin.OUT) # Light the onboard LED
while True:
led.on()
time.sleep(2)
led.off()
time.sleep(1)