from machine import Pin
from utime import sleep
print("MicroPython for the IoT Blinky example. Hello tercero!!")
led = Pin(8, Pin.OUT)
while True:
led.on()
sleep(0.5)
led.off()
sleep(0.5)
from machine import Pin
from utime import sleep
print("MicroPython for the IoT Blinky example. Hello tercero!!")
led = Pin(8, Pin.OUT)
while True:
led.on()
sleep(0.5)
led.off()
sleep(0.5)