2019-05-06 00:08:12 -04:00
|
|
|
#include "alice.h"
|
|
|
|
|
2020-05-27 20:03:02 -05:00
|
|
|
void keyboard_pre_init_kb(void) {
|
2020-04-15 18:37:47 -04:00
|
|
|
setPinOutput(INDICATOR_PIN_0);
|
|
|
|
setPinOutput(INDICATOR_PIN_1);
|
|
|
|
setPinOutput(INDICATOR_PIN_2);
|
2020-05-27 20:03:02 -05:00
|
|
|
|
|
|
|
keyboard_pre_init_user();
|
2019-05-06 00:08:12 -04:00
|
|
|
}
|
|
|
|
|
2020-06-13 03:06:38 -04:00
|
|
|
|
2019-12-13 12:14:11 -05:00
|
|
|
bool led_update_kb(led_t led_state) {
|
|
|
|
bool runDefault = led_update_user(led_state);
|
|
|
|
if (runDefault) {
|
2020-04-15 18:37:47 -04:00
|
|
|
writePin(INDICATOR_PIN_0, !led_state.num_lock);
|
|
|
|
writePin(INDICATOR_PIN_1, !led_state.caps_lock);
|
|
|
|
writePin(INDICATOR_PIN_2, !led_state.scroll_lock);
|
2019-05-06 00:08:12 -04:00
|
|
|
}
|
2019-12-13 12:14:11 -05:00
|
|
|
return runDefault;
|
2019-05-06 00:08:12 -04:00
|
|
|
}
|