]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/s65_x/s65_x.c
844f5cf28bb83500532a5f08df5c92ff64d75639
[qmk_firmware.git] / keyboards / s65_x / s65_x.c
1 #include "s65_x.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   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 void led_set_kb(uint8_t usb_led) {
16   // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
17   led_set_user(usb_led);
18 }