diff options
author | Danny <nooges@users.noreply.github.com> | 2022-03-08 17:08:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 22:08:02 +0000 |
commit | 022e1fdac86c38136d6f818aec15d34b1ab92be5 (patch) | |
tree | 53ac1e741ad3c09bc811d9f5997dcb2c5e107ed6 /keyboards/keebio/bigswitchseat/keymaps/via | |
parent | 3347b63d83d019219770f55627f3d5136806bb5c (diff) |
Add Big Switch Seat (#16524)
* Add Big Switch Seat
* Update keyboards/keebio/bigswitchseat/rules.mk
Co-authored-by: Drashna Jaelre <drashna@live.com>
* Update keyboards/keebio/bigswitchseat/rules.mk
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/keebio/bigswitchseat/keymaps/via')
-rw-r--r-- | keyboards/keebio/bigswitchseat/keymaps/via/keymap.c | 27 | ||||
-rw-r--r-- | keyboards/keebio/bigswitchseat/keymaps/via/rules.mk | 2 |
2 files changed, 29 insertions, 0 deletions
diff --git a/keyboards/keebio/bigswitchseat/keymaps/via/keymap.c b/keyboards/keebio/bigswitchseat/keymaps/via/keymap.c new file mode 100644 index 0000000000..6d4378b995 --- /dev/null +++ b/keyboards/keebio/bigswitchseat/keymaps/via/keymap.c @@ -0,0 +1,27 @@ +// Copyright 2021 Danny Nguyen (@nooges) +// SPDX-License-Identifier: GPL-2.0-or-later + +#include QMK_KEYBOARD_H + +// Defines names for use in layer keycodes and the keymap +enum layer_names { + _MAIN, + _FN1, + _FN2, + _FN3 +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [_MAIN] = LAYOUT( + KC_A + ), + [_FN1] = LAYOUT( + _______ + ), + [_FN2] = LAYOUT( + _______ + ), + [_FN3] = LAYOUT( + _______ + ) +}; diff --git a/keyboards/keebio/bigswitchseat/keymaps/via/rules.mk b/keyboards/keebio/bigswitchseat/keymaps/via/rules.mk new file mode 100644 index 0000000000..36b7ba9cbc --- /dev/null +++ b/keyboards/keebio/bigswitchseat/keymaps/via/rules.mk @@ -0,0 +1,2 @@ +VIA_ENABLE = yes +LTO_ENABLE = yes |