qmk_firmware

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

keymap.c (4285B)


      1 #include QMK_KEYBOARD_H
      2 
      3 // Each layer gets a name for readability, which is then used in the keymap matrix below.
      4 // The underscores don't mean anything - you can have a layer called STUFF or any other name.
      5 // Layer names don't all need to be of the same length, obviously, and you can also skip them
      6 // entirely and just use numbers.
      7 #define _BL 0
      8 #define _FL 1
      9 
     10 enum custom_keycodes {
     11   KC_ENYE = SAFE_RANGE,
     12   KC_CEDL
     13 };
     14 
     15 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
     16   /* Keymap _BL: (Base Layer) Default Layer
     17    * ,-----------------------------------------------------------.
     18    * |Esc~| 1|  2|  3|  4|  5|  6|  7|  8|  9|  0|  -|  =|Backsp |
     19    * |-----------------------------------------------------------|
     20    * |Tab  |  Q|  W|  E|  R|  T|  Y|  U|  I|  O|  P|  [|  ]| Ret |
     21    * |-------------------------------------------------------.   |
     22    * |Ctrl   |  A|  S|  D|  F|  G|  H|  J|  K|  L|  Ñ|  ;| ' |urn|
     23    * |-----------------------------------------------------------|
     24    * |Shift   |  Z|  X|  C|  V|  B|  N|  M|  ,|  .|  /|Shift | Fn|
     25    * |-----------------------------------------------------------|
     26    * |    |Alt|WinK  |      Space            |WinK  |Alt|        |
     27    * `-----------------------------------------------------------'
     28    *
     29    */
     30   [_BL] = LAYOUT_60_iso_split_rshift(
     31     QK_GESC,       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,
     32     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,
     33     KC_LCTL,       KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_ENYE, KC_SCLN, KC_QUOT,       KC_ENT,
     34     OSM(MOD_LSFT), _______, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, OSM(MOD_RSFT), MO(_FL),
     35     _______,       KC_LGUI, KC_LALT,                   KC_SPC,                                      _______, KC_RALT, KC_RGUI,       _______
     36   ),
     37 
     38   /* Keymap _FL: (Function Layer) Second Layer
     39    * ,-----------------------------------------------------------.
     40    * |    |F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|PSR|  QK_BOOT|
     41    * |-----------------------------------------------------------|
     42    * |     |   |VUP|   |   |   |   |   |   |   |   |   |   |     |
     43    * |-------------------------------------------------------.   |
     44    * |CapsLck|PRV|VDN|NXT|   |RGB|FRW|BRT|VAI|VAD|INC|DEC|   |   |
     45    * |-----------------------------------------------------------|
     46    * |        |   |   |  Ç|   |BTG|   |MUT|   |   |   |      |   |
     47    * |-----------------------------------------------------------|
     48    * |    |   |      |          PLY/PAU      |      |   |        |
     49    * `-----------------------------------------------------------'
     50    */
     51   [_FL] = LAYOUT_60_iso_split_rshift(
     52     _______, KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_PSCR, QK_BOOT,
     53     _______, _______, KC_VOLU, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
     54     KC_CAPS, KC_MPRV, KC_VOLD, KC_MNXT, _______, _______, UG_TOGG, UG_NEXT, RGB_M_B, UG_VALU, UG_VALD, BL_UP,   BL_DOWN, _______,
     55     _______, _______, _______, _______, KC_CEDL, _______, BL_TOGG, _______, KC_MUTE, _______, _______, _______, _______, _______,
     56     _______, _______, _______,                   KC_MPLY,                                     _______, _______, _______, _______
     57   )
     58 
     59 };
     60 
     61 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
     62     if (record->event.pressed) {
     63         switch(keycode) {
     64             case KC_ENYE: // Ñ
     65                 register_code16(KC_LALT);
     66                 tap_code(KC_KP_0);
     67                 tap_code(KC_KP_2);
     68                 tap_code(KC_KP_4);
     69                 tap_code(KC_KP_1);
     70                 unregister_code16(KC_LALT);
     71                 return false;
     72             case KC_CEDL: // Ç
     73                 register_code16(KC_LALT);
     74                 tap_code(KC_KP_0);
     75                 tap_code(KC_KP_2);
     76                 tap_code(KC_KP_3);
     77                 tap_code(KC_KP_1);
     78                 unregister_code16(KC_LALT);
     79                 return false;
     80             default:
     81               return true;
     82         }
     83     }
     84     return true;
     85 };