diff options
author | That-Canadian <poole.chris.11@gmail.com> | 2017-08-07 08:00:02 -0400 |
---|---|---|
committer | That-Canadian <poole.chris.11@gmail.com> | 2017-08-07 08:00:02 -0400 |
commit | 1bbb49585ee1aef347b7c3397bc9f83040289402 (patch) | |
tree | 21bb9b3fb5c266ce786b250d2004730fd1df5ece /keyboards/bananasplit/bananasplit.c | |
parent | 15822a8e44a4d3d02ae5d5e9deedd27ffc2c6709 (diff) | |
parent | 597ff7aee9a04b4f4f41d6d1f5b2e1223e0e83b8 (diff) |
Merge branch 'master' into minidox
Diffstat (limited to 'keyboards/bananasplit/bananasplit.c')
-rw-r--r-- | keyboards/bananasplit/bananasplit.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/bananasplit/bananasplit.c b/keyboards/bananasplit/bananasplit.c new file mode 100644 index 0000000000..1aa8fb1745 --- /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); +} |