blob: 4f67a0203da7460c3157afb84954a8be6c20459c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "ta65.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
matrix_init_user();
};
void matrix_scan_kb(void) {
// put your looping keyboard code here
// runs every cycle (a lot)
matrix_scan_user();
};
|