•
En el MicroPython Terminal se debe visualizar los siguientes mensajes indicativo que el
código se ejecutó de manera correcta.
Luis Thayer Ojeda 0115 Of. 1105, Providencia, Santiago, Chile
+56 2 23339579 | www.mcielectronics.cl | www.arduino.cl |
MANUAL DE USUARIO TIC XBEE 3
print(" +--------------------------------------+\n")
# Set up the LED pin object to manage the LED status. Configure the pin
# as output and set its initial value to off (0).
led_pin = Pin(LED_PIN_ID, Pin.OUT, value=0)
# Start blinking the LED by toggling its value every second.
while True:
print("- LED OFF")
led_pin.value(0)
time.sleep(1)
print("- LED ON")
led_pin.value(1)
time.sleep(1)
Figura 6. Respuesta MicroPython Terminal código de ejemplo 1.
Código de ejemplo1. Blink.
info@mcielectronics.cl
Página 13 de 19