diff options
author | Jonavin <71780717+Jonavin@users.noreply.github.com> | 2021-07-03 04:36:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 01:36:38 -0700 |
commit | d068b7c097e3e272eba88bd8960034763d4e334f (patch) | |
tree | f5f8f7af7a9fc766276e8bcba039dda2506e5a6c /keyboards/gmmk | |
parent | 5878e86c8a028ad3878aeed158b413afe2e3498c (diff) | |
download | qmk_firmware-d068b7c097e3e272eba88bd8960034763d4e334f.tar.gz qmk_firmware-d068b7c097e3e272eba88bd8960034763d4e334f.zip |
[Keymap] gmmk pro keymap with numpad, enhanced encoder functionality and Win key lock (#13406)
Co-authored-by: Jonavin <=>
Diffstat (limited to 'keyboards/gmmk')
-rw-r--r-- | keyboards/gmmk/pro/keymaps/jonavin/config.h | 28 | ||||
-rw-r--r-- | keyboards/gmmk/pro/keymaps/jonavin/keymap.c | 151 | ||||
-rw-r--r-- | keyboards/gmmk/pro/keymaps/jonavin/readme.md | 24 | ||||
-rw-r--r-- | keyboards/gmmk/pro/keymaps/jonavin/rules.mk | 4 |
4 files changed, 207 insertions, 0 deletions
diff --git a/keyboards/gmmk/pro/keymaps/jonavin/config.h b/keyboards/gmmk/pro/keymaps/jonavin/config.h new file mode 100644 index 000000000..d7219b257 --- /dev/null +++ b/keyboards/gmmk/pro/keymaps/jonavin/config.h | |||
@@ -0,0 +1,28 @@ | |||
1 | /* Copyright 2021 Jonavin Eng | ||
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 | #pragma once | ||
18 | |||
19 | #define TAPPING_TOGGLE 2 | ||
20 | // TT set to two taps | ||
21 | |||
22 | /* Handle GRAVESC combo keys */ | ||
23 | #define GRAVE_ESC_ALT_OVERRIDE | ||
24 | //Always send Escape if Alt is pressed | ||
25 | #define GRAVE_ESC_CTRL_OVERRIDE | ||
26 | //Always send Escape if Control is pressed | ||
27 | |||
28 | #define TAPPING_TERM 180 | ||
diff --git a/keyboards/gmmk/pro/keymaps/jonavin/keymap.c b/keyboards/gmmk/pro/keymaps/jonavin/keymap.c new file mode 100644 index 000000000..7289c1dd9 --- /dev/null +++ b/keyboards/gmmk/pro/keymaps/jonavin/keymap.c | |||
@@ -0,0 +1,151 @@ | |||
1 | /* Copyright 2021 Glorious, LLC <salman@pcgamingrace.com> | ||
2 | Copyright 2021 Jonavin | ||
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 | |||
20 | enum custom_layers { | ||
21 | _BASE, | ||
22 | _FN1, | ||
23 | _MO2, | ||
24 | _MO3, | ||
25 | }; | ||
26 | |||
27 | enum custom_keycodes { | ||
28 | KC_00 = SAFE_RANGE, | ||
29 | KC_WINLCK, //Toggles Win key on and off | ||
30 | }; | ||
31 | |||
32 | // Tap Dance Definitions | ||
33 | enum custom_tapdance { | ||
34 | TD_LSFT_CAPSLOCK, | ||
35 | }; | ||
36 | |||
37 | qk_tap_dance_action_t tap_dance_actions[] = { | ||
38 | // Tap once for shift, twice for Caps Lock | ||
39 | [TD_LSFT_CAPSLOCK] = ACTION_TAP_DANCE_DOUBLE(KC_LSFT, KC_CAPS), | ||
40 | }; | ||
41 | |||
42 | #define KC_LSFTCAPS TD(TD_LSFT_CAPSLOCK) | ||
43 | |||
44 | bool _isWinKeyDisabled = false; | ||
45 | |||
46 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
47 | switch (keycode) { | ||
48 | case KC_00: | ||
49 | if (record->event.pressed) { | ||
50 | // when keycode KC_00 is pressed | ||
51 | SEND_STRING("00"); | ||
52 | } else { | ||
53 | // when keycode KC_00 is released | ||
54 | } | ||
55 | break; | ||
56 | |||
57 | case KC_WINLCK: | ||
58 | if (record->event.pressed) { | ||
59 | _isWinKeyDisabled = !_isWinKeyDisabled; //toggle status | ||
60 | if(_isWinKeyDisabled) { | ||
61 | process_magic(GUI_OFF, record); | ||
62 | } else { | ||
63 | process_magic(GUI_ON, record); | ||
64 | } | ||
65 | } else unregister_code16(keycode); | ||
66 | break; | ||
67 | } | ||
68 | return true; | ||
69 | }; | ||
70 | |||
71 | |||
72 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
73 | |||
74 | // ESC F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Ins Rotary(Mute) | ||
75 | // ~ 1 2 3 4 5 6 7 8 9 0 - (=) BackSpc Del | ||
76 | // Tab Q W E R T Y U I O P [ ] \ PgUp | ||
77 | // Caps A S D F G H J K L ; " Enter PgDn | ||
78 | // Sh_L Z X C V B N M , . ? Sh_R Up End | ||
79 | // Ct_L Win_L Alt_L SPACE Alt_R FN Ct_R Left Down Right | ||
80 | |||
81 | |||
82 | [_BASE] = LAYOUT( | ||
83 | 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_INS, KC_MUTE, | ||
84 | 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_DEL, | ||
85 | 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_PGUP, | ||
86 | TT(_MO2), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_PGDN, | ||
87 | KC_LSFTCAPS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_END, | ||
88 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FN1),KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT | ||
89 | ), | ||
90 | |||
91 | [_FN1] = LAYOUT( | ||
92 | _______, KC_MYCM, KC_WHOM, KC_CALC, KC_MSEL, KC_MPRV, KC_MNXT, KC_MPLY, KC_MSTP, KC_MUTE, KC_VOLD, KC_VOLU, _______, KC_CALC, _______, | ||
93 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, | ||
94 | _______, _______, RGB_VAI, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, _______, _______, _______, RESET, KC_HOME, | ||
95 | KC_CAPS, _______, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_END, | ||
96 | _______, _______, RGB_HUI, _______, _______, _______, KC_NLCK, _______, _______, _______, _______, _______, RGB_MOD, _______, | ||
97 | _______, KC_WINLCK, _______, _______, _______, _______, _______, RGB_SPD, RGB_RMOD, RGB_SPI | ||
98 | ), | ||
99 | |||
100 | [_MO2] = LAYOUT( | ||
101 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
102 | _______, _______, _______, _______, _______, _______, _______, KC_P7, KC_P8, KC_P9, KC_P0, KC_PMNS, KC_PPLS, _______, _______, | ||
103 | _______, KC_HOME, KC_UP, KC_END, KC_PGUP, _______, KC_TAB, KC_P4, KC_P5, KC_P6, KC_PDOT, _______, _______, _______, KC_HOME, | ||
104 | _______, KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, _______, _______, KC_P1, KC_P2, KC_P3, KC_NO, KC_PAST, KC_PENT, KC_END, | ||
105 | _______, KC_NO, KC_DEL, KC_INS, KC_NO, KC_NO, KC_NO, KC_P0, KC_00, KC_PDOT, KC_PSLS, _______, RCTL(KC_PGUP), _______, | ||
106 | _______, _______, _______, KC_BSPC, _______, _______, _______, RCTL(KC_LEFT), RCTL(KC_PGDN), RCTL(KC_RIGHT) | ||
107 | ), | ||
108 | |||
109 | [_MO3] = LAYOUT( | ||
110 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
111 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
112 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
113 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
114 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||
115 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ | ||
116 | ), | ||
117 | |||
118 | }; | ||
119 | |||
120 | #ifdef ENCODER_ENABLE // Encoder Functionality | ||
121 | |||
122 | bool encoder_update_user(uint8_t index, bool clockwise) { | ||
123 | |||
124 | if ( clockwise ) { | ||
125 | if (keyboard_report->mods & MOD_BIT(KC_LSFT) ) { // If you are holding L shift, Page up | ||
126 | unregister_mods(MOD_BIT(KC_LSFT)); | ||
127 | register_code(KC_PGDN); | ||
128 | register_mods(MOD_BIT(KC_LSFT)); | ||
129 | } else if (keyboard_report->mods & MOD_BIT(KC_LCTL)) { // if holding Left Ctrl, navigate next word | ||
130 | tap_code16(LCTL(KC_RGHT)); | ||
131 | } else if (keyboard_report->mods & MOD_BIT(KC_LALT)) { // if holding Left Alt, change media next track | ||
132 | tap_code(KC_MEDIA_NEXT_TRACK); | ||
133 | } else { | ||
134 | tap_code(KC_VOLU); // Otherwise it just changes volume | ||
135 | } | ||
136 | } else { | ||
137 | if (keyboard_report->mods & MOD_BIT(KC_LSFT) ) { | ||
138 | unregister_mods(MOD_BIT(KC_LSFT)); | ||
139 | register_code(KC_PGUP); | ||
140 | register_mods(MOD_BIT(KC_LSFT)); | ||
141 | } else if (keyboard_report->mods & MOD_BIT(KC_LCTL)) { // if holding Left Ctrl, navigate previous word | ||
142 | tap_code16(LCTL(KC_LEFT)); | ||
143 | } else if (keyboard_report->mods & MOD_BIT(KC_LALT)) { // if holding Left Alt, change media previous track | ||
144 | tap_code(KC_MEDIA_PREV_TRACK); | ||
145 | } else { | ||
146 | tap_code(KC_VOLD); | ||
147 | } | ||
148 | } | ||
149 | return true; | ||
150 | } | ||
151 | #endif | ||
diff --git a/keyboards/gmmk/pro/keymaps/jonavin/readme.md b/keyboards/gmmk/pro/keymaps/jonavin/readme.md new file mode 100644 index 000000000..45bfedb51 --- /dev/null +++ b/keyboards/gmmk/pro/keymaps/jonavin/readme.md | |||
@@ -0,0 +1,24 @@ | |||
1 | # jonavin's GMMK Pro layout | ||
2 | |||
3 | - Add all the non-RGB related keys from Glorious Core default mapping that's missing in the default qmk mapping | ||
4 | - Add PrtScr, Scroll Lock, Break, NumLock to Fn layer | ||
5 | - Implement Win key lock using Fn+Win like in Glorious Core firmware | ||
6 | - Layer 2 mod on Caps Lock with double-tap to switch to this layer, double tap to switch back | ||
7 | - Layer 2 provides arrows on WASD and additional nav keys + right hand numpad with 00; an be used for Alt Code entry | ||
8 | - Layer 2 left spacebar Backspace | ||
9 | - add double tap of Left Shift to toggle Caps Lock | ||
10 | - additional encoder functionality | ||
11 | - holding L shift, Navigate page up/down | ||
12 | - holding Left Ctrl, navigate prev/next word | ||
13 | - holding Left Alt, change media prev/next track | ||
14 | - default is change volume | ||
15 | |||
16 | ## All layers diagram | ||
17 | Default layer | ||
18 |  | ||
19 | |||
20 | Fn Layer | ||
21 |  | ||
22 | |||
23 | Layer 2 (Caps Lock Mod) | ||
24 |  | ||
diff --git a/keyboards/gmmk/pro/keymaps/jonavin/rules.mk b/keyboards/gmmk/pro/keymaps/jonavin/rules.mk new file mode 100644 index 000000000..f4f3d4939 --- /dev/null +++ b/keyboards/gmmk/pro/keymaps/jonavin/rules.mk | |||
@@ -0,0 +1,4 @@ | |||
1 | VIA_ENABLE = yes | ||
2 | MOUSEKEY_ENABLE = no | ||
3 | TAP_DANCE_ENABLE = yes | ||
4 | BOOTMAGIC_ENABLE = lite | ||