qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

keymap.c (3295B)


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