from machine import Pin
import time
tiempo = 500
led_Azul = Pin(12, Pin.OUT)
while 1:
led_Azul.on()
time.sleep_ms(tiempo)
led_Azul.off()
time.sleep_ms(tiempo)
from machine import Pin
import time
tiempo = 500
led_Azul = Pin(12, Pin.OUT)
while 1:
led_Azul.on()
time.sleep_ms(tiempo)
led_Azul.off()
time.sleep_ms(tiempo)