liblight: Add path to blink nodes for green/blue LED's.
Liblight can now set the green/blue LED's to blink mode. Change-Id: I6206ed4397cf91859074b35b2faa9f287b3c4f9d
This commit is contained in:
@@ -54,6 +54,12 @@ char const*const LCD_FILE
|
|||||||
char const*const RED_BLINK_FILE
|
char const*const RED_BLINK_FILE
|
||||||
= "/sys/class/leds/red/blink";
|
= "/sys/class/leds/red/blink";
|
||||||
|
|
||||||
|
char const*const GREEN_BLINK_FILE
|
||||||
|
= "/sys/class/leds/green/blink";
|
||||||
|
|
||||||
|
char const*const BLUE_BLINK_FILE
|
||||||
|
= "/sys/class/leds/blue/blink";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* device methods
|
* device methods
|
||||||
*/
|
*/
|
||||||
@@ -152,7 +158,12 @@ set_speaker_light_locked(struct light_device_t* dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (blink) {
|
if (blink) {
|
||||||
|
if (red)
|
||||||
write_int(RED_BLINK_FILE, blink);
|
write_int(RED_BLINK_FILE, blink);
|
||||||
|
if (green)
|
||||||
|
write_int(GREEN_BLINK_FILE, blink);
|
||||||
|
if (blue)
|
||||||
|
write_int(BLUE_BLINK_FILE, blink);
|
||||||
} else {
|
} else {
|
||||||
write_int(RED_LED_FILE, red);
|
write_int(RED_LED_FILE, red);
|
||||||
write_int(GREEN_LED_FILE, green);
|
write_int(GREEN_LED_FILE, green);
|
||||||
|
|||||||
Reference in New Issue
Block a user