This commit is contained in:
skullY
2020-02-29 20:30:30 -08:00
parent b281d88c6f
commit 5ba8a76da5
161 changed files with 56 additions and 1779 deletions

View File

@@ -21,8 +21,6 @@ void matrix_init_kb(void) {
// Sinking setup (5V -> LED/Res -> Pin)
setPinOutput(B4);
matrix_init_user();
}
void led_set_kb(uint8_t usb_led) {
@@ -34,21 +32,4 @@ void led_set_kb(uint8_t usb_led) {
} else {
writePinHigh(B4);
}
led_set_user(usb_led);
}
// Optional override functions below.
// You can leave any or all of these undefined.
// These are only required if you want to perform custom actions.
/*
void matrix_scan_kb(void) {
// put your looping keyboard code here
// runs every cycle (a lot)
matrix_scan_user();
}
*/