diff options
| author | kaylanm <1063516+kaylanm@users.noreply.github.com> | 2021-04-03 00:20:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 21:20:34 -0700 |
| commit | cd9637731205e908b8b28b103fe86e50ab9f86b8 (patch) | |
| tree | ec303fc1739232db7542249ee69f36ece50cf535 | |
| parent | 8b98e67643e664dd28b96f7e40372f5b93595050 (diff) | |
| download | qmk_firmware-cd9637731205e908b8b28b103fe86e50ab9f86b8.tar.gz qmk_firmware-cd9637731205e908b8b28b103fe86e50ab9f86b8.zip | |
[Keyboard] Add GON NerD TKL VIA keymap (#12309)
Co-authored-by: Ryan <fauxpark@gmail.com>
| -rw-r--r-- | keyboards/gon/nerdtkl/config.h | 7 | ||||
| -rw-r--r-- | keyboards/gon/nerdtkl/keymaps/via/keymap.c | 58 | ||||
| -rw-r--r-- | keyboards/gon/nerdtkl/keymaps/via/rules.mk | 3 |
3 files changed, 66 insertions, 2 deletions
diff --git a/keyboards/gon/nerdtkl/config.h b/keyboards/gon/nerdtkl/config.h index 8619cf24a..74d67f30d 100644 --- a/keyboards/gon/nerdtkl/config.h +++ b/keyboards/gon/nerdtkl/config.h | |||
| @@ -3,8 +3,8 @@ | |||
| 3 | #include "config_common.h" | 3 | #include "config_common.h" |
| 4 | 4 | ||
| 5 | /* USB Device descriptor parameter */ | 5 | /* USB Device descriptor parameter */ |
| 6 | #define VENDOR_ID 0xFEED | 6 | #define VENDOR_ID 0x4E45 // NE |
| 7 | #define PRODUCT_ID 0x6965 | 7 | #define PRODUCT_ID 0x5244 // RD |
| 8 | #define DEVICE_VER 0x0001 | 8 | #define DEVICE_VER 0x0001 |
| 9 | #define MANUFACTURER GON | 9 | #define MANUFACTURER GON |
| 10 | #define PRODUCT NerD TKL | 10 | #define PRODUCT NerD TKL |
| @@ -22,6 +22,9 @@ | |||
| 22 | #define MATRIX_COL_PINS { E6, B0, B1, B2, B3, F0, D0, D5, D1 } | 22 | #define MATRIX_COL_PINS { E6, B0, B1, B2, B3, F0, D0, D5, D1 } |
| 23 | #define UNUSED_PINS | 23 | #define UNUSED_PINS |
| 24 | 24 | ||
| 25 | #define BOOTMAGIC_LITE_ROW 8 | ||
| 26 | #define BOOTMAGIC_LITE_COLUMN 0 | ||
| 27 | |||
| 25 | /* COL2ROW or ROW2COL */ | 28 | /* COL2ROW or ROW2COL */ |
| 26 | #define DIODE_DIRECTION COL2ROW | 29 | #define DIODE_DIRECTION COL2ROW |
| 27 | 30 | ||
diff --git a/keyboards/gon/nerdtkl/keymaps/via/keymap.c b/keyboards/gon/nerdtkl/keymaps/via/keymap.c new file mode 100644 index 000000000..297c6a091 --- /dev/null +++ b/keyboards/gon/nerdtkl/keymaps/via/keymap.c | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | /* Copyright 2020 Michael Kaylan | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | // Keymap layers | ||
| 20 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 21 | |||
| 22 | [0] = LAYOUT_tkl( | ||
| 23 | KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, | ||
| 24 | KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP, | ||
| 25 | KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS, KC_DEL, KC_END, KC_PGDN, | ||
| 26 | KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, | ||
| 27 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1), KC_UP, | ||
| 28 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 29 | ), | ||
| 30 | |||
| 31 | [1] = LAYOUT_tkl( | ||
| 32 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 33 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 34 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 35 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 36 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 38 | ), | ||
| 39 | |||
| 40 | [2] = LAYOUT_tkl( | ||
| 41 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 42 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 43 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 44 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 45 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 47 | ), | ||
| 48 | |||
| 49 | [3] = LAYOUT_tkl( | ||
| 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 52 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 53 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 54 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 55 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 56 | ) | ||
| 57 | |||
| 58 | }; | ||
diff --git a/keyboards/gon/nerdtkl/keymaps/via/rules.mk b/keyboards/gon/nerdtkl/keymaps/via/rules.mk new file mode 100644 index 000000000..df7e3909c --- /dev/null +++ b/keyboards/gon/nerdtkl/keymaps/via/rules.mk | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | VIA_ENABLE = yes | ||
| 2 | LTO_ENABLE = yes | ||
| 3 | BACKLIGHT_ENABLE = yes | ||
