]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/hadron/hadron.c
fix the clueboard layout json
[qmk_firmware.git] / keyboards / hadron / hadron.c
1 #include "hadron.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 }