Files
TencentOS-tiny/components/language/micropython/examples/hwapi/button_led.py
2022-09-29 12:10:37 +08:00

10 lines
180 B
Python

import utime
from hwconfig import LED, BUTTON
# Light LED when (and while) a BUTTON is pressed
while 1:
LED.value(BUTTON.value())
# Don't burn CPU
utime.sleep_ms(10)