logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

keymap.c (4430B)


  1. // This is the canonical layout file for the Quantum project. If you want to add another keyboard,
  2. // this is the style you want to emulate.
  3. #include QMK_KEYBOARD_H
  4. // Each layer gets a name for readability, which is then used in the keymap matrix below.
  5. // The underscores don't mean anything - you can have a layer called STUFF or any other name.
  6. // Layer names don't all need to be of the same length, obviously, and you can also skip them
  7. // entirely and just use numbers.
  8. enum custom_layers {
  9. _QWERTY,
  10. _LOWER,
  11. _RAISE,
  12. _ADJUST,
  13. };
  14. #define LOWER MO(_LOWER)
  15. #define RAISE MO(_RAISE)
  16. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  17. /* Qwerty
  18. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  19. * | esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | bspc |
  20. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  21. * | ` | Q | W | E | R | T | Y | U | I | O | P | del |
  22. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  23. * | tab | A | S | D | F | G | H | J | K | L | ; | ' |
  24. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  25. * | lshift | Z | X | C | V | B | N | M | , | . | / | enter |
  26. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  27. * | lctrl | lgui | lalt | ralt | lower | space | space | raise | left | down | up | right |
  28. * +--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+--------+
  29. */
  30. [_QWERTY] = LAYOUT_ortho_5x12 (
  31. KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
  32. KC_GRV, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
  33. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
  34. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
  35. KC_LCTL, KC_LGUI, KC_LALT, KC_RALT, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
  36. ),
  37. [_LOWER] = LAYOUT_ortho_5x12 (
  38. _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______,
  39. KC_CAPS, KC_F11, KC_F12, _______, _______, _______, _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
  40. _______, KC_VOLD, KC_MUTE, KC_VOLU, _______, _______, _______, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
  41. _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, _______,
  42. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END
  43. ),
  44. [_RAISE] = LAYOUT_ortho_5x12 (
  45. _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, _______,
  46. KC_CAPS, KC_F11, KC_F12, _______, _______, _______, _______, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
  47. _______, KC_VOLD, KC_MUTE, KC_VOLU, _______, _______, _______, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
  48. _______, KC_MPRV, KC_MPLY, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, _______,
  49. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END
  50. ),
  51. [_ADJUST] = LAYOUT_ortho_5x12 (
  52. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  53. _______, QK_BOOT, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SCRL, KC_PAUS, _______,
  54. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  55. _______, _______, _______, _______, _______, BL_STEP, BL_BRTG, _______, _______, _______, _______, _______,
  56. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  57. ),
  58. };
  59. layer_state_t layer_state_set_user(layer_state_t state) {
  60. return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
  61. }