summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/kbod/kbod.c
diff options
context:
space:
mode:
authorNurahmadie <nurahmadie@gmail.com>2017-02-21 03:39:51 +0100
committerNurahmadie <nurahmadie@gmail.com>2017-04-02 13:27:27 +0200
commitf8ed4ed573c798bd40a1063072fd619732a2d49a (patch)
treed09f9cad01aab8a5718dda1e324daf01ab79f4da /keyboards/handwired/kbod/kbod.c
parent3448d5d4874a2775f85320a2be69edd241575d46 (diff)
downloadqmk_firmware-f8ed4ed573c798bd40a1063072fd619732a2d49a.tar.gz
qmk_firmware-f8ed4ed573c798bd40a1063072fd619732a2d49a.tar.xz
Initial work for my kbod support in qmk_firmware
- Wiring layout done No actual keymap yet
Diffstat (limited to 'keyboards/handwired/kbod/kbod.c')
-rw-r--r--keyboards/handwired/kbod/kbod.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/handwired/kbod/kbod.c b/keyboards/handwired/kbod/kbod.c
new file mode 100644
index 000000000..9a12cae0d
--- /dev/null
+++ b/keyboards/handwired/kbod/kbod.c
@@ -0,0 +1,28 @@
+#include "kbod.h"
+
+void matrix_init_kb(void) {
+ // put your keyboard start-up code here
+ // runs once when the firmware starts up
+
+ matrix_init_user();
+}
+
+void matrix_scan_kb(void) {
+ // put your looping keyboard code here
+ // runs every cycle (a lot)
+
+ matrix_scan_user();
+}
+
+bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
+ // put your per-action keyboard code here
+ // runs for every action, just before processing by the firmware
+
+ return process_record_user(keycode, record);
+}
+
+void led_set_kb(uint8_t usb_led) {
+ // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
+
+ led_set_user(usb_led);
+}