]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard1/clueboard1.c
Renames keyboard folder to keyboards, adds couple of tmk's fixes (#432)
[qmk_firmware.git] / keyboards / 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         matrix_init_user();
15 }
16
17 void matrix_scan_kb(void) {
18         matrix_scan_user();
19 }