diff options
Diffstat (limited to 'keyboards/hadron/ver2/ver2.c')
-rw-r--r-- | keyboards/hadron/ver2/ver2.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/keyboards/hadron/ver2/ver2.c b/keyboards/hadron/ver2/ver2.c index 739f06567..f00b4f26d 100644 --- a/keyboards/hadron/ver2/ver2.c +++ b/keyboards/hadron/ver2/ver2.c | |||
@@ -1,26 +1 @@ | |||
1 | #include "ver2.h" | #include "ver2.h" | |
2 | |||
3 | |||
4 | void matrix_init_kb(void) { | ||
5 | |||
6 | matrix_init_user(); | ||
7 | } | ||
8 | |||
9 | void matrix_scan_kb(void) { | ||
10 | // put your looping keyboard code here | ||
11 | // runs every cycle (a lot) | ||
12 | matrix_scan_user(); | ||
13 | } | ||
14 | |||
15 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
16 | // put your per-action keyboard code here | ||
17 | // runs for every action, just before processing by the firmware | ||
18 | |||
19 | return process_record_user(keycode, record); | ||
20 | } | ||
21 | |||
22 | void led_set_kb(uint8_t usb_led) { | ||
23 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
24 | |||
25 | led_set_user(usb_led); | ||
26 | } \ No newline at end of file | ||