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:
Jouke Witteveen
2022-10-15 21:09:03 +02:00
committed by GitHub
parent ad8630bd72
commit 2ee573fc5f
13 changed files with 49 additions and 101 deletions

View File

@@ -20,17 +20,13 @@
uint8_t send_data = 0x00;
bool led_update_kb(led_t led_state) {
bool res = led_update_user(led_state);
if(res) {
if (led_state.caps_lock){
send_data |= 1 << 5;
} else {
send_data &= ~(1 << 5);
}
i2c_writeReg((PORT_EXPANDER_ADDRESS << 1), 0x0A, &send_data, 1, 20);
void led_update_ports(led_t led_state) {
if (led_state.caps_lock){
send_data |= 1 << 5;
} else {
send_data &= ~(1 << 5);
}
return res;
i2c_writeReg((PORT_EXPANDER_ADDRESS << 1), 0x0A, &send_data, 1, 20);
}
__attribute__((weak)) layer_state_t layer_state_set_user(layer_state_t state) {