]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/412_64/412_64.c
Update KBD67 readme so that it mentions the KBD65 PCB (#5143)
[qmk_firmware.git] / keyboards / handwired / 412_64 / 412_64.c
1
2 #include "412_64.h"
3
4 void matrix_init_kb(void) {
5         // put your keyboard start-up code here
6         // runs once when the firmware starts up
7
8         matrix_init_user();
9 }
10
11 void matrix_scan_kb(void) {
12         // put your looping keyboard code here
13         // runs every cycle (a lot)
14
15         matrix_scan_user();
16 }
17
18 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
19         // put your per-action keyboard code here
20         // runs for every action, just before processing by the firmware
21
22         return process_record_user(keycode, record);
23 }
24
25 void led_set_kb(uint8_t usb_led) {
26         // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
27
28         led_set_user(usb_led);
29 }