keymap.c 4.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #pragma message "You may need to add LAYOUT_planck_grid to your keymap layers - see default for an example"
  2. #include "planck.h"
  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. // Fillers to make layering more clear
  8. #define _______ KC_TRNS
  9. #define XXXXXXX KC_NO
  10. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  11. /* Qwerty
  12. * ,-----------------------------------------------------------------------------------.
  13. * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
  14. * |------+------+------+------+------+-------------+------+------+------+------+------|
  15. * | Esc | A | S | D | F | G | H | J | K | L | ; | " |
  16. * |------+------+------+------+------+------|------+------+------+------+------+------|
  17. * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
  18. * |------+------+------+------+------+------+------+------+------+------+------+------|
  19. * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right |
  20. * `-----------------------------------------------------------------------------------'
  21. */
  22. [0] = {
  23. {KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC},
  24. {KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT},
  25. {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT },
  26. {KC_RSFT, KC_LCTL, KC_LALT, KC_LGUI, M(1), KC_SPC, KC_SPC, M(2), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT}
  27. },
  28. /* Lower
  29. * ,-----------------------------------------------------------------------------------.
  30. * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
  31. * |------+------+------+------+------+-------------+------+------+------+------+------|
  32. * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | |
  33. * |------+------+------+------+------+------|------+------+------+------+------+------|
  34. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | | |Enter |
  35. * |------+------+------+------+------+------+------+------+------+------+------+------|
  36. * |Reset | | | | | | | Next | Vol- | Vol+ | Play |
  37. * `-----------------------------------------------------------------------------------'
  38. */
  39. [1] = {
  40. {KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC},
  41. {KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE},
  42. {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, _______},
  43. {RESET, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
  44. },
  45. /* Raise
  46. * ,-----------------------------------------------------------------------------------.
  47. * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
  48. * |------+------+------+------+------+-------------+------+------+------+------+------|
  49. * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
  50. * |------+------+------+------+------+------|------+------+------+------+------+------|
  51. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | |Enter |
  52. * |------+------+------+------+------+------+------+------+------+------+------+------|
  53. * |Reset | | | | | | | Next | Vol- | Vol+ | Play |
  54. * `-----------------------------------------------------------------------------------'
  55. */
  56. [2] = {
  57. {KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC},
  58. {KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS},
  59. {_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______},
  60. {RESET, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY}
  61. },
  62. };
  63. const uint16_t PROGMEM fn_actions[] = {
  64. };
  65. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
  66. {
  67. switch(id) {
  68. case 1:
  69. if (record->event.pressed) {
  70. layer_on(1);
  71. } else {
  72. layer_off(1);
  73. }
  74. break;
  75. case 2:
  76. if (record->event.pressed) {
  77. layer_on(2);
  78. } else {
  79. layer_off(2);
  80. }
  81. break;
  82. }
  83. return MACRO_NONE;
  84. };