from machine import Pin
from utime import sleep
led_estado=Pin(5,Pin.OUT)
while True:
led_estado.value(1)
sleep(0)
print("on")
led_estado.value(0)
sleep(0.2)
print("off")
from machine import Pin
from utime import sleep
led_estado=Pin(5,Pin.OUT)
while True:
led_estado.value(1)
sleep(0)
print("on")
led_estado.value(0)
sleep(0.2)
print("off")