Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 1 | What: /sys/class/leds/<led>/brightness |
| 2 | Date: March 2006 |
| 3 | KernelVersion: 2.6.17 |
| 4 | Contact: Richard Purdie <rpurdie@rpsys.net> |
| 5 | Description: |
| 6 | Set the brightness of the LED. Most LEDs don't |
Pavel Machek | ed25e9c | 2016-10-03 10:10:50 +0200 | [diff] [blame] | 7 | have hardware brightness support, so will just be turned on for |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 8 | non-zero brightness settings. The value is between 0 and |
| 9 | /sys/class/leds/<led>/max_brightness. |
| 10 | |
Pavel Machek | ed25e9c | 2016-10-03 10:10:50 +0200 | [diff] [blame] | 11 | Writing 0 to this file clears active trigger. |
| 12 | |
| 13 | Writing non-zero to this file while trigger is active changes the |
| 14 | top brightness trigger is going to use. |
| 15 | |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 16 | What: /sys/class/leds/<led>/max_brightness |
| 17 | Date: March 2006 |
| 18 | KernelVersion: 2.6.17 |
| 19 | Contact: Richard Purdie <rpurdie@rpsys.net> |
| 20 | Description: |
Pavel Machek | ed25e9c | 2016-10-03 10:10:50 +0200 | [diff] [blame] | 21 | Maximum brightness level for this LED, default is 255 (LED_FULL). |
| 22 | |
| 23 | If the LED does not support different brightness levels, this |
| 24 | should be 1. |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 25 | |
Hans de Goede | 0cb8eb3 | 2017-01-29 14:42:52 +0100 | [diff] [blame] | 26 | What: /sys/class/leds/<led>/brightness_hw_changed |
| 27 | Date: January 2017 |
| 28 | KernelVersion: 4.11 |
| 29 | Description: |
| 30 | Last hardware set brightness level for this LED. Some LEDs |
| 31 | may be changed autonomously by hardware/firmware. Only LEDs |
| 32 | where this happens and the driver can detect this, will have |
| 33 | this file. |
| 34 | |
| 35 | This file supports poll() to detect when the hardware changes |
| 36 | the brightness. |
| 37 | |
| 38 | Reading this file will return the last brightness level set |
| 39 | by the hardware, this may be different from the current |
| 40 | brightness. Reading this file when no hw brightness change |
| 41 | event has happened will return an ENODATA error. |
| 42 | |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 43 | What: /sys/class/leds/<led>/trigger |
| 44 | Date: March 2006 |
| 45 | KernelVersion: 2.6.17 |
| 46 | Contact: Richard Purdie <rpurdie@rpsys.net> |
| 47 | Description: |
| 48 | Set the trigger for this LED. A trigger is a kernel based source |
Pavel Machek | ed25e9c | 2016-10-03 10:10:50 +0200 | [diff] [blame] | 49 | of LED events. |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 50 | You can change triggers in a similar manner to the way an IO |
| 51 | scheduler is chosen. Trigger specific parameters can appear in |
Rafał Miłecki | 1f70cb4 | 2016-08-26 16:19:36 +0200 | [diff] [blame] | 52 | /sys/class/leds/<led> once a given trigger is selected. For |
| 53 | their documentation see sysfs-class-led-trigger-*. |
Corentin Chary | 5f634c6 | 2009-08-28 12:56:45 +0000 | [diff] [blame] | 54 | |
Janusz Krzysztofik | 9f9455a | 2011-01-12 16:59:20 -0800 | [diff] [blame] | 55 | What: /sys/class/leds/<led>/inverted |
| 56 | Date: January 2011 |
| 57 | KernelVersion: 2.6.38 |
| 58 | Contact: Richard Purdie <rpurdie@rpsys.net> |
| 59 | Description: |
| 60 | Invert the LED on/off state. This parameter is specific to |
| 61 | gpio and backlight triggers. In case of the backlight trigger, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 62 | it is useful when driving a LED which is intended to indicate |
Janusz Krzysztofik | 9f9455a | 2011-01-12 16:59:20 -0800 | [diff] [blame] | 63 | a device in a standby like state. |