diff options
author | wanleg <32079073+wanleg@users.noreply.github.com> | 2018-08-19 13:18:19 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-08-19 13:18:19 -0700 |
commit | d87ef88de0303309a317283a292c52e7e89d6449 (patch) | |
tree | b8e05f6ef53236e2d791010f57affd8d2ec068da /keyboards/5x5/5x5.c | |
parent | 8bc771a84247b59ab924cc241f455beec6384362 (diff) | |
download | firmware-d87ef88de0303309a317283a292c52e7e89d6449.tar.gz firmware-d87ef88de0303309a317283a292c52e7e89d6449.tar.bz2 firmware-d87ef88de0303309a317283a292c52e7e89d6449.zip |
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.c | 29 |
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); +} |