mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-05-09 09:04:17 -04:00
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>
This commit is contained in:
parent
3382d543d4
commit
669378421e
2 changed files with 29 additions and 0 deletions
27
keyboards/keebio/bigswitchseat/keymaps/via/keymap.c
Normal file
27
keyboards/keebio/bigswitchseat/keymaps/via/keymap.c
Normal file
|
@ -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(
|
||||||
|
_______
|
||||||
|
)
|
||||||
|
};
|
2
keyboards/keebio/bigswitchseat/keymaps/via/rules.mk
Normal file
2
keyboards/keebio/bigswitchseat/keymaps/via/rules.mk
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
VIA_ENABLE = yes
|
||||||
|
LTO_ENABLE = yes
|
Loading…
Add table
Add a link
Reference in a new issue