2019-05-06 10:08:12 +06:00
|
|
|
#include "alice.h"
|
|
|
|
|
2020-05-28 07:03:02 +06:00
|
|
|
void keyboard_pre_init_kb(void) {
|
2020-04-16 04:37:47 +06:00
|
|
|
setPinOutput(INDICATOR_PIN_0);
|
|
|
|
setPinOutput(INDICATOR_PIN_1);
|
|
|
|
setPinOutput(INDICATOR_PIN_2);
|
2020-05-28 07:03:02 +06:00
|
|
|
|
|
|
|
keyboard_pre_init_user();
|
2019-05-06 10:08:12 +06:00
|
|
|
}
|
|
|
|
|
2020-06-13 13:06:38 +06:00
|
|
|
|
2019-12-13 23:14:11 +06:00
|
|
|
bool led_update_kb(led_t led_state) {
|
|
|
|
bool runDefault = led_update_user(led_state);
|
|
|
|
if (runDefault) {
|
2020-04-16 04:37:47 +06: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 10:08:12 +06:00
|
|
|
}
|
2019-12-13 23:14:11 +06:00
|
|
|
return runDefault;
|
2019-05-06 10:08:12 +06:00
|
|
|
}
|