]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/clueboard1/clueboard1.c
Merge remote-tracking branch 'upstream/master'
[qmk_firmware.git] / keyboard / clueboard1 / clueboard1.c
1 #include "clueboard1.h"
2
3 __attribute__ ((weak))
4 void matrix_init_user(void) {
5         // leave these blank
6 }
7
8 __attribute__ ((weak))
9 void matrix_scan_user(void) {
10         // leave these blank
11 }
12
13 void matrix_init_kb(void) {
14         #ifdef RGBLIGHT_ENABLE
15                 rgblight_init();
16         #endif
17
18         matrix_init_user();
19 }
20
21 void matrix_scan_kb(void) {
22         matrix_scan_user();
23 }