1
0
Fork 0

[Keymap] add 2 custom leds to handwired/jotanck (#6042)

* add JOTANCK_LED1&2

* set BACKLIGHT_ENABLE = no

* add 2 custom leds

* swap custom led pins 1&2

* readme update

* update default keymap
This commit is contained in:
jotix 2019-06-01 17:26:46 -03:00 committed by Drashna Jaelre
parent 9f5733b595
commit 016a258301
5 changed files with 18 additions and 16 deletions

View file

@ -1,6 +1,10 @@
#include "jotanck.h"
void matrix_init_kb(void) {
matrix_init_user();
matrix_init_user();
}
void keyboard_pre_init_user() {
setPinOutput(JOTANCK_LED1);
setPinOutput(JOTANCK_LED2);
}