Difference between revisions of "LED"
From FriendlyELEC WiKi
(updated by API) |
|||
Line 2: | Line 2: | ||
==H3/H5== | ==H3/H5== | ||
− | + | The onboard status LEDs are all heartbeat status by default, and you can check the relevant settings with the following command: | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ cat /sys/class/leds/status_led/trigger | $ cat /sys/class/leds/status_led/trigger | ||
Line 13: | Line 13: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | [heartbeat] | + | [heartbeat]means that the default triggering mode of the LED is heartbeat.<br> |
− | + | Example: Execute the following command to keep the LED always on: | |
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
echo default-on > /sys/class/leds/status_led/trigger | echo default-on > /sys/class/leds/status_led/trigger | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 11:05, 9 September 2021
H3/H5
The onboard status LEDs are all heartbeat status by default, and you can check the relevant settings with the following command:
$ cat /sys/class/leds/status_led/trigger none rc-feedback rfkill-any kbd-scrolllock kbd-numlock kbd-capslock kbd-kanalockk kbd-shiftlock kbd-altgrlock kbd-ctrllock kbd-altlock kbd-shiftllock kbd-shiftrll ock kbd-ctrlllock kbd-ctrlrlock usbport usb-gadget usb-host mmc1 mmc2 mmc0 timerr oneshot disk-activity ide-disk mtd nand-disk [heartbeat] backlight gpio cpu cpuu 0 cpu1 cpu2 cpu3 default-on transient flash torch panic netdev rfkill0 stmmac-0:: 00:1Gbps stmmac-0:00:100Mbps stmmac-0:00:10Mbps
[heartbeat]means that the default triggering mode of the LED is heartbeat.
Example: Execute the following command to keep the LED always on:
echo default-on > /sys/class/leds/status_led/trigger