aboutsummaryrefslogtreecommitdiff
path: root/keyboards/40percentclub/5x5/5x5.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/40percentclub/5x5/5x5.c')
-rw-r--r--keyboards/40percentclub/5x5/5x5.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/keyboards/40percentclub/5x5/5x5.c b/keyboards/40percentclub/5x5/5x5.c
index 20e524609..b31fcd781 100644
--- a/keyboards/40percentclub/5x5/5x5.c
+++ b/keyboards/40percentclub/5x5/5x5.c
@@ -1,29 +1 @@
1
2#include "5x5.h" #include "5x5.h"
3
4void 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
11void matrix_scan_kb(void) {
12 // put your looping keyboard code here
13 // runs every cycle (a lot)
14
15 matrix_scan_user();
16}
17
18bool 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
25void 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}