from machine import Pin
from time import sleep
led = Pin(14,Pin.OUT)
while True:
led.on()
print("LED IS ON")
sleep(1)
led.off()
print("LED IS OFF")
sleep(1)from machine import Pin
from time import sleep
led = Pin(14,Pin.OUT)
while True:
led.on()
print("LED IS ON")
sleep(1)
led.off()
print("LED IS OFF")
sleep(1)