blinky.py
# Questo lavoro è concesso in licenza MIT.
# Copyright (c) 2013-2024 OpenMV LLC. Tutti i diritti riservati.
# https://github.com/openmv/openmv/blob/master/LICENSE
#
# Esempio Blinky
import time
from machine import LED
led = LED("LED_BLUE")
while True:
led.on()
time.sleep_ms(500)
led.off()
time.sleep_ms(500)