Migrate led_update_kb implementations to DD (#23985)
This commit is contained in:
parent
751482580e
commit
a2176f6a03
39 changed files with 77 additions and 533 deletions
|
|
@ -15,24 +15,8 @@
|
|||
*/
|
||||
|
||||
|
||||
#include "selene.h"
|
||||
|
||||
void matrix_init_kb(void){
|
||||
gpio_set_pin_output(NUM_LOCK_PIN);
|
||||
gpio_set_pin_output(CAPS_LOCK_PIN);
|
||||
gpio_set_pin_output(SCROLL_LOCK_PIN);
|
||||
}
|
||||
#include "quantum.h"
|
||||
|
||||
void keyboard_post_init_user(void) {
|
||||
rgblight_setrgb(0xff, 0xff, 0xff);
|
||||
}
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool res = led_update_user(led_state);
|
||||
if(res) {
|
||||
gpio_write_pin(NUM_LOCK_PIN, led_state.num_lock);
|
||||
gpio_write_pin(CAPS_LOCK_PIN, led_state.caps_lock);
|
||||
gpio_write_pin(SCROLL_LOCK_PIN, led_state.scroll_lock);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue