led_update_kb -> led_update_ports where appropriate (#18716)
Following #14452, less boilerplate is needed to customize indicator led control.
This commit is contained in:
parent
ad8630bd72
commit
2ee573fc5f
13 changed files with 49 additions and 101 deletions
|
@ -16,16 +16,12 @@
|
|||
|
||||
#include "timberwolf.h"
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool runDefault = led_update_user(led_state);
|
||||
if(runDefault) {
|
||||
if (led_state.caps_lock) {
|
||||
backlight_level_noeeprom(get_backlight_level());
|
||||
} else {
|
||||
backlight_set(0);
|
||||
}
|
||||
void led_update_ports(led_t led_state) {
|
||||
if (led_state.caps_lock) {
|
||||
backlight_level_noeeprom(get_backlight_level());
|
||||
} else {
|
||||
backlight_set(0);
|
||||
}
|
||||
return runDefault;
|
||||
}
|
||||
|
||||
bool encoder_update_kb(uint8_t index, bool clockwise) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue