]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/kitten_paw/kitten_paw.c
Merge pull request #673 from coderkun/master
[qmk_firmware.git] / keyboards / kitten_paw / kitten_paw.c
1 #include "kitten_paw.h"
2
3 void matrix_init_kb(void) {
4         // put your keyboard start-up code here
5         // runs once when the firmware starts up
6
7     matrix_init_quantum();
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_quantum();
16     matrix_scan_user();
17 }
18
19 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
20         // put your per-action keyboard code here
21         // runs for every action, just before processing by the firmware
22
23         return process_record_user(keycode, record);
24 }
25
26 void led_set_kb(uint8_t usb_led) {
27         // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
28
29         led_set_user(usb_led);
30 }