keymap.c (3759B)
1 /* Copyright 2021 qpockets 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 enum layers{ 20 _BASE, 21 _GAME, 22 _SYM, 23 _NAV 24 25 }; 26 27 enum combo_events { 28 COMBO_BSPC, 29 COMBO_ENT, 30 COMBO_TAB, 31 COMBO_ESC, 32 COMBO_DEL 33 }; 34 #define KC_DZ LT(_NAV, KC_Z) 35 #define KC_UP_SPC LT(_SYM, KC_SPC) 36 //#define KC_GUP_BSPC LT(_SYM, KC_BSPC) 37 #define KC_SF LSFT_T(KC_F) 38 #define KC_SJ RSFT_T(KC_J) 39 #define SNIP S(G(KC_S)) 40 41 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 42 [_BASE] = LAYOUT_625_bar( 43 KC_MPLY, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_DEL, KC_Y, KC_U, KC_I, KC_O, KC_P, 44 KC_MNXT, KC_A, KC_S, KC_D, KC_SF, KC_G, KC_RGUI, KC_H, KC_SJ, KC_K, KC_L, KC_QUOT, 45 KC_MPRV, KC_DZ, KC_X, KC_C, KC_V, KC_B, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, 46 SNIP, KC_LGUI, KC_LCTL, KC_UP_SPC, KC_RALT, TG(_GAME) 47 ), 48 49 [_GAME] = LAYOUT_625_bar( 50 KC_TRNS, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_ESC, KC_Y, KC_U, KC_I, KC_O, KC_P, 51 KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_LSFT, KC_H, KC_SJ, KC_K, KC_L, KC_QUOT, 52 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, 53 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_TRNS 54 ), 55 56 [_SYM] = LAYOUT_625_bar( 57 KC_TRNS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_TRNS, KC_6, KC_7, KC_8, KC_9, KC_0, 58 KC_TRNS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_TRNS, KC_CIRC, KC_AMPR, KC_ASTR, KC_EQUAL, KC_MINS, 59 KC_TRNS, KC_PIPE, KC_BSLS, KC_LPRN, KC_LBRC, KC_SCLN, KC_TRNS, KC_COLN, KC_RBRC, KC_RPRN, KC_PLUS, KC_UNDS, 60 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS 61 ), 62 63 [_NAV] = LAYOUT_625_bar( 64 KC_TRNS, KC_TRNS, KC_HOME, KC_UP, KC_END, KC_PGUP, QK_BOOT, KC_F1, KC_F2, KC_F3, KC_F4, KC_BSPC, 65 KC_TRNS, KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_PGDN, KC_TRNS, KC_F5, KC_F6, KC_F7, KC_F8, KC_TAB, 66 KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_CAPS, KC_F9, KC_F10, KC_F11, KC_F12, KC_ENT, 67 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS 68 ), 69 70 }; 71 72 bool encoder_update_user(uint8_t index, bool clockwise) { 73 if (index == 0) { /* left encoder */ 74 if (clockwise) { 75 tap_code(KC_VOLU); 76 } else { 77 tap_code(KC_VOLD); 78 } 79 } else if (index == 1) { /* center encoder */ 80 if (clockwise) { 81 tap_code(MS_WHLD); 82 } else { 83 tap_code(MS_WHLU); 84 } 85 } 86 return true; 87 } 88 89 #ifdef COMBO_ENABLE 90 const uint16_t PROGMEM combo_bspc[] = {KC_O, KC_P, COMBO_END}; 91 const uint16_t PROGMEM combo_ent[] = {KC_K, KC_L, COMBO_END}; 92 const uint16_t PROGMEM combo_tab[] = {KC_S, KC_D, COMBO_END}; 93 const uint16_t PROGMEM combo_esc[] = {KC_T, KC_Y, COMBO_END}; 94 const uint16_t PROGMEM combo_del[] = {KC_Q, KC_W, COMBO_END}; 95 96 combo_t key_combos[] = { 97 [COMBO_BSPC] = COMBO(combo_bspc,KC_BSPC), 98 [COMBO_ENT] = COMBO(combo_ent,KC_ENT), 99 [COMBO_TAB] = COMBO(combo_tab,KC_TAB), 100 [COMBO_ESC] = COMBO(combo_esc,KC_ESC), 101 [COMBO_DEL] = COMBO(combo_del,KC_DEL) 102 }; 103 #endif