1
0
Fork 0

knight Indicator light fix (#7398)

* knight Indicator light fix

* Update knight.c

* Update knight.c

* Update knight.c

* Update knight.c
This commit is contained in:
moyi4681 2019-11-18 00:25:35 -08:00 committed by fauxpark
parent cee8df3edf
commit b608bddc5e
2 changed files with 21 additions and 17 deletions

View file

@ -1,19 +1,23 @@
#include "knight.h"
void matrix_init_kb(void) {
setPinOutput(D1);
setPinOutput(E2);
// put your keyboard start-up code here
// runs once when the firmware starts up
matrix_init_user();
};
void led_set_kb(uint8_t usb_led) {
if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
writePinHigh(D1);
} else {
writePinLow(D1);
}
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
writePinHigh(E2);
} else {
writePinLow(E2);
}
led_set_user(usb_led);
led_init_ports();
}
void led_init_ports(void) {
setPinOutput(D1);
writePinHigh(D1);
setPinOutput(E2);
writePinHigh(E2);
}
bool led_update_kb(led_t led_state) {
if(led_update_user(led_state)) {
writePin(E2, !led_state.caps_lock);
writePin(D1, !led_state.num_lock);
}
return true;
}