from machine import Pin
from time import sleep_ms
saida = Pin(26, Pin.OUT, value=0)
while True:
saida.on()
sleep_ms(500)
saida.off()
sleep_ms(500)from machine import Pin
from time import sleep_ms
saida = Pin(26, Pin.OUT, value=0)
while True:
saida.on()
sleep_ms(500)
saida.off()
sleep_ms(500)