[Keyboard] change xbows/knight pins of capslock Indicator (#7486)

This commit is contained in:
moyi4681 2019-11-26 10:02:42 -08:00 committed by James Young
parent 170261328e
commit f6ffa28b27
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
#define MATRIX_COLS 15
// wiring of each half
#define MATRIX_ROW_PINS { D2, E6, C7, F7, F6, F5 }
#define MATRIX_ROW_PINS { D2, E6, E2, F7, F6, F5 }
#define MATRIX_COL_PINS { B0, B1, B2, B3, F4, F1, C6, B6, B5, B4, D7, D6, D4, D5, D3}
/* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW

View File

@ -11,12 +11,12 @@ void matrix_init_kb(void) {
void led_init_ports(void) {
setPinOutput(D1);
writePinHigh(D1);
setPinOutput(E2);
writePinHigh(E2);
setPinOutput(C7);
writePinHigh(C7);
}
bool led_update_kb(led_t led_state) {
if(led_update_user(led_state)) {
writePin(E2, !led_state.caps_lock);
writePin(C7, !led_state.caps_lock);
writePin(D1, !led_state.num_lock);
}
return true;