1
0

RGB Matrix: driver naming cleanups (#21594)

This commit is contained in:
Ryan
2023-08-23 10:00:03 +10:00
committed by GitHub
parent dfb6d38f08
commit 37bc949945
513 changed files with 1166 additions and 1170 deletions

View File

@@ -27,9 +27,9 @@
*/
void led_update_ports(led_t led_state) {
if (led_state.caps_lock) {
IS31FL3733_set_color( 7+64-1, 0, 255, 0 );
is31fl3733_set_color( 7+64-1, 0, 255, 0 );
} else {
IS31FL3733_set_color( 7+64-1, 0, 0, 0 );
is31fl3733_set_color( 7+64-1, 0, 0, 0 );
}
}
@@ -45,6 +45,6 @@ __attribute__((weak)) layer_state_t layer_state_set_user(layer_state_t state) {
G = 255;
}
IS31FL3733_set_color( 6+64-1, R, G, B );
is31fl3733_set_color( 6+64-1, R, G, B );
return state;
}