forked from mirror/qmk_firmware
RGB Matrix: driver naming cleanups (#21594)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user