summaryrefslogtreecommitdiff
path: root/keyboards/bananasplit/bananasplit.c
diff options
context:
space:
mode:
authorNic Aitch2017-08-06 20:13:29 -0500
committerJack Humbert2017-08-06 22:46:44 -0400
commit087fbe0628652ed6ac81a03748b9bac747edcacc (patch)
tree1a20746eef906e230046d0756e80f51c084e9e3e /keyboards/bananasplit/bananasplit.c
parent9e79bb14915ee39b756eaeb569b14a54fb9916ec (diff)
Port main keyboard parts
Diffstat (limited to 'keyboards/bananasplit/bananasplit.c')
-rw-r--r--keyboards/bananasplit/bananasplit.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/bananasplit/bananasplit.c b/keyboards/bananasplit/bananasplit.c
new file mode 100644
index 000000000..1aa8fb174
--- /dev/null
+++ b/keyboards/bananasplit/bananasplit.c
@@ -0,0 +1,28 @@
+#include "bananasplit.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);
+}