summaryrefslogtreecommitdiffstatshomepage
path: root/examples/hwapi/button_led.py
blob: bd6fe0172988c0bbd393151db38f59af584ef9b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
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)