summaryrefslogtreecommitdiffstats
path: root/keyboards/5x5/5x5.c
diff options
context:
space:
mode:
authorwanleg <32079073+wanleg@users.noreply.github.com>2018-08-19 22:18:19 +0200
committerDrashna Jaelre <drashna@live.com>2018-08-19 22:18:19 +0200
commitd87ef88de0303309a317283a292c52e7e89d6449 (patch)
treeb8e05f6ef53236e2d791010f57affd8d2ec068da /keyboards/5x5/5x5.c
parent8bc771a84247b59ab924cc241f455beec6384362 (diff)
downloadqmk_firmware-d87ef88de0303309a317283a292c52e7e89d6449.tar.gz
qmk_firmware-d87ef88de0303309a317283a292c52e7e89d6449.tar.xz
Keyboard: add 5x5 board support (#3694)
* 5x5 board support * 5x5 work * 5x5board config * add 5x5 board support
Diffstat (limited to 'keyboards/5x5/5x5.c')
-rw-r--r--keyboards/5x5/5x5.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/keyboards/5x5/5x5.c b/keyboards/5x5/5x5.c
new file mode 100644
index 000000000..20e524609
--- /dev/null
+++ b/keyboards/5x5/5x5.c
@@ -0,0 +1,29 @@
+
+#include "5x5.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);
+}