LED commands
H1’s single onboard status LED is fully scriptable — there’s no fixed meaning attached to it, only what your script tells it to do:
| Command | Behavior |
|---|---|
LED_ON | Turns the onboard LED on. |
LED_OFF | Turns the onboard LED off. |
Combine both with DELAY to build a blink pattern, e.g. to signal that a script
is about to finish:
blink.hdc
LED_ON
DELAY 300
LED_OFF
DELAY 300See the LEDs hardware page for the LED itself.
Last updated on