diff options
| author | Salicylic-acid3 <46864619+Salicylic-acid3@users.noreply.github.com> | 2022-02-05 00:59:38 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 07:59:38 -0800 |
| commit | 405c04e0d2966eaa3ad7d96f53863ed7d9618bc4 (patch) | |
| tree | ab7b7ebd79db1d70e1e1dfb5a6dd1eeb90230995 /keyboards/gl516/n51gl/keymaps/default/keymap.c | |
| parent | 1cb423c424363f758d0f988b3c7e7a4e16ced74b (diff) | |
| download | qmk_firmware-405c04e0d2966eaa3ad7d96f53863ed7d9618bc4.tar.gz qmk_firmware-405c04e0d2966eaa3ad7d96f53863ed7d9618bc4.zip | |
[Keyboard] Add Keyboards GL516s (#14950)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/gl516/n51gl/keymaps/default/keymap.c')
| -rw-r--r-- | keyboards/gl516/n51gl/keymaps/default/keymap.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/keyboards/gl516/n51gl/keymaps/default/keymap.c b/keyboards/gl516/n51gl/keymaps/default/keymap.c new file mode 100644 index 000000000..469626d85 --- /dev/null +++ b/keyboards/gl516/n51gl/keymaps/default/keymap.c | |||
| @@ -0,0 +1,60 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2021 Salicylic_Acid | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include QMK_KEYBOARD_H | ||
| 19 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
| 20 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
| 21 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
| 22 | // entirely and just use numbers. | ||
| 23 | enum layer_number { | ||
| 24 | _QWERTY = 0, | ||
| 25 | _FN, | ||
| 26 | }; | ||
| 27 | |||
| 28 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 29 | [_QWERTY] = LAYOUT( | ||
| 30 | //,--------------------------------------------------------------| |--------------------------------------------------------------. | ||
| 31 | KC_ESC, 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_BSPC, | ||
| 32 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 33 | LT(_FN,KC_CAPS), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, | ||
| 34 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 35 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_MUTE, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_RSFT, | ||
| 36 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 37 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_SPC, KC_SPC, KC_SPC, KC_LALT, KC_LEFT, KC_DOWN, KC_RGHT | ||
| 38 | //|--------------------------------------------------------------| |--------------------------------------------------------------' | ||
| 39 | ), | ||
| 40 | [_FN] = LAYOUT( | ||
| 41 | //,--------------------------------------------------------------| |--------------------------------------------------------------. | ||
| 42 | _______, RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, | ||
| 43 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 44 | _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, _______, _______, | ||
| 45 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 46 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
| 47 | //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------| | ||
| 48 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
| 49 | //|--------------------------------------------------------------| |--------------------------------------------------------------' | ||
| 50 | ) | ||
| 51 | }; | ||
| 52 | |||
| 53 | bool encoder_update_user(uint8_t index, bool clockwise) { | ||
| 54 | if (clockwise) { | ||
| 55 | tap_code16(KC_VOLD); | ||
| 56 | } else { | ||
| 57 | tap_code16(KC_VOLU); | ||
| 58 | } | ||
| 59 | return true; | ||
| 60 | } | ||
