1
0
Fork 0

fixed defaulf keymap, added my own keymap

now the LEDs are working like they should
This commit is contained in:
René Werner 2016-08-25 12:25:57 +02:00
parent 6a61c89477
commit 1bbd3c1eea
7 changed files with 122 additions and 104 deletions

View file

@ -67,6 +67,7 @@ void matrix_init(void) {
matrix[i] = 0;
matrix_debouncing[i] = 0;
}
matrix_init_quantum();
}
uint8_t matrix_scan(void) {
@ -94,7 +95,7 @@ uint8_t matrix_scan(void) {
}
}
}
matrix_scan_quantum();
return 1;
}