mirror of
https://github.com/openmv/openmv.git
synced 2025-09-26 23:09:13 +08:00
17 lines
326 B
Python
17 lines
326 B
Python
# This work is licensed under the MIT license.
|
|
# Copyright (c) 2013-2023 OpenMV LLC. All rights reserved.
|
|
# https://github.com/openmv/openmv/blob/master/LICENSE
|
|
#
|
|
# Blinky example
|
|
|
|
import time
|
|
from machine import LED
|
|
|
|
led = LED("LED_BLUE")
|
|
|
|
while True:
|
|
led.on()
|
|
time.sleep_ms(500)
|
|
led.off()
|
|
time.sleep_ms(500)
|