diff options
author | nstickney <nstickney@gmail.com> | 2017-03-07 19:09:56 -0600 |
---|---|---|
committer | nstickney <nstickney@gmail.com> | 2017-03-07 19:09:56 -0600 |
commit | eab0166f832f3cca88059d87374426e6b017beff (patch) | |
tree | 28bb5b4f5fe9e6e5dbb88ff8864835e7e2e2bbee /keyboards/roadkit/roadkit.c | |
parent | b69b214d524bb658152c5b2491cb270b8464aeb4 (diff) | |
parent | 615bfc4eca8204b73c592a076ca02aeaeceb7e1e (diff) | |
download | qmk_firmware-eab0166f832f3cca88059d87374426e6b017beff.tar.gz |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'keyboards/roadkit/roadkit.c')
-rw-r--r-- | keyboards/roadkit/roadkit.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/keyboards/roadkit/roadkit.c b/keyboards/roadkit/roadkit.c new file mode 100644 index 000000000..26e0c51ec --- /dev/null +++ b/keyboards/roadkit/roadkit.c @@ -0,0 +1,28 @@ +#include "roadkit.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); +} |