keymap.c (7152B)
1 /* Copyright 2022 DmNosachev 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 layer_names { 20 _BASE, // default layer 21 _NM // numpad on right, mouse on left 22 }; 23 24 /* 25 * 26 * 27 * ,-------------------------------------------. ,-------------------------------------------. 28 * | Esc | F2 | F3 | F4 | F5 | F6 | | F7 | F8 | F9 | F10 | F11 | PrSc | 29 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 30 * | += | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - | 31 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 32 * | Tab | Q | W | E | R | T | | Y | U | I | O | P | \| | 33 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 34 * | NM | A | S | D | F | G | | H | J | K | L | ;: | '"/NM | 35 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 36 * | Shift | Z | X | C | V | B | | N | M | ,. | .> | /? | Shift | 37 * `--------+------+------+------+------+------' `------+------+------+------+------+--------' 38 * | `~ | Ins | Left | Right| | Up | Down | [ | ] | 39 * `---------------------------' `---------------------------' 40 * ,-------------. ,-------------. 41 * | Ctrl | Alt | | Gui | Ctrl | 42 * ,------|------|------| |------+------+------. 43 * | | | Home | | PgUp | | | 44 * |Backsp|Delete|------| |------|Enter | Space| 45 * | | | End | | PgDn | | | 46 * `--------------------' `--------------------' 47 */ 48 49 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 50 [_BASE] = LAYOUT( 51 KC_ESC, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_PSCR, 52 KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, 53 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS, 54 MO(_NM), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, LT(_NM, KC_QUOT), 55 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, 56 KC_GRV, KC_INS, KC_LEFT, KC_RIGHT, KC_UP, KC_DOWN, KC_LBRC, KC_RBRC, 57 KC_LCTL, KC_LALT, KC_RGUI,KC_RCTL, 58 KC_HOME, KC_PGUP, 59 KC_BSPC, KC_DEL, KC_END, KC_PGDN,KC_ENTER, KC_SPC 60 ), 61 /* 62 * 63 * 64 * ,-------------------------------------------. ,-------------------------------------------. 65 * | F1 | | | | | | | | | | | | F12 | 66 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 67 * | | | | | | | |ScrLk |Numlck| = | / | * | | 68 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 69 * | | | MbL | MUp | MbR | | |CapsLk| 7 | 8 | 9 | - | | 70 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 71 * | | | ML | MDn | MR | | | | 4 | 5 | 6 | + | | 72 * |--------+------+------+------+------+------| |------+------+------+------+------+--------| 73 * | | | | | | | | . | 1 | 2 | 3 |Enter | | 74 * `--------+------+------+------+------+------' `------+------+------+------+------+--------' 75 * |QK_BOOT | | | | | | | | | 76 * `---------------------------' `---------------------------' 77 * ,-------------. ,-------------. 78 * | | | | RAlt | | 79 * ,------|------|------| |------+------+------. 80 * | | |MWhUp | | | | | 81 * | | |------| |------| | 0 | 82 * | | |MWhDn | | | | | 83 * `--------------------' `--------------------' 84 */ 85 [_NM] = LAYOUT( 86 KC_F1, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_F12, 87 _______, _______, _______, _______, _______, _______, KC_SCRL, KC_NUM, KC_PEQL, KC_PSLS, KC_PAST, _______, 88 _______, _______, MS_BTN1, MS_UP, MS_BTN2, _______, KC_CAPS, KC_P7, KC_P8, KC_P9, KC_PMNS, _______, 89 _______, _______, MS_LEFT, MS_DOWN, MS_RGHT, _______, _______, KC_P4, KC_P5, KC_P6, KC_PPLS, _______, 90 _______, _______, _______, _______, _______, _______, KC_PDOT, KC_P1, KC_P2, KC_P3, KC_PENT, _______, 91 QK_BOOT, _______, _______, _______, _______, _______, _______, _______, 92 _______, _______, KC_RALT, _______, 93 MS_WHLU, _______, 94 _______, _______, MS_WHLD, _______, _______, KC_P0 95 ) 96 }; 97 98 99 layer_state_t layer_state_set_user(layer_state_t state) { 100 gpio_write_pin(LED4_PIN, layer_state_cmp(state, _NM)); 101 return state; 102 }