There are 4 small green LEDs on the Dragonboard 410c and the heartbeat one on the right is constantly blinking, how do I toggle the other ones via command line.
How to toggle LED on-board on Dragonboard 410c running Linux
692 Views Asked by FrickeFresh At
2
There are 2 best solutions below
0

First thing to note is that currently 3 of the 4 LEDs are actively being used, but LED_4 is unused and can be turned on via command line with
// turn on
echo 1 > /sys/class/leds/apq8016-sbc\:green\:user4/brightness
// turn off
echo 0 > /sys/class/leds/apq8016-sbc\:green\:user4/brightness
First thing to note is that how to access the on board LEDs or user LEDs which reside between the two USB connectors as well as how many are available for use depends on which operating system, Android or Linux, you are using.
For both Android and Linux the user LEDs are listed in the folder
/sys/class/leds
so you can use theadb
utility to remote in, and thenls
the folder to see what the actual pseudo file names are.For both you will change the value in the
brightness
pseudo file located in the pseudo folder for the user LED in order to turn the LED on, a value of 1, or off, a value of 0.There are other pseudo files associated with each LED one of which is
trigger
which allows you to set the kernel event to trigger the LED. See this answer in Raspberry Pi StackExchange to How do I control the system LEDs using my software?.Under Android, looking at several of the
trigger
pseudo files of several of the pseudo directories in/sys/class/leds
gives the following output for the pseudo directories ofboot
(user LED 4 used for booting indicator with Android),led1
(user LED 1 which is available with Android but not Linux), andwlann
(the LAN active indicator).Note: in order to use file I/O to the pseudo file, the file permissions must allow the type of access (read, write, read/write) you want to use. The default for the LED pseudo files appear to be read so the
chmod
command will need to be used as insudo chmod 777 /sys/class/leds/led1/brightness
.https://www.96boards.org/documentation/consumer/dragonboard/dragonboard410c/guides/led-connectors.md.html
For Linux, currently 3 of the 4 user LEDs are actively being used by the OS, but user LED 4 is unused and can be turned on with a command line of:
For Android 5.1, 3 of the 4 user LEDs are available. The user LEDs are accessed through the path
/sys/class/leds
where there are pseudo files for three of the user LEDs:led1
,led2
, andled3
. For example to turn on and off user LED 1 use the following command lines. For user LED 2 replaceled1
in the path withled2
and likewise for user LED 3 replaceled
in the path withled3
.