summaryrefslogtreecommitdiffstatshomepage
path: root/examples/hwapi/button_led.py
blob: c73bcfc89a297865c77285bd688e90ae346b8be9 (plain) (blame)
1
2
3
4
5
6
7
8
9
import time
from hwconfig import LED, BUTTON

# Light LED when (and while) a BUTTON is pressed

while 1:
    LED.value(BUTTON.value())
    # Don't burn CPU
    time.sleep_ms(10)