2
0

keymap.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. #include "planck.h"
  2. #include "action_layer.h"
  3. #ifdef AUDIO_ENABLE
  4. #include "audio.h"
  5. #endif
  6. #include "eeconfig.h"
  7. extern keymap_config_t keymap_config;
  8. // Each layer gets a name for readability, which is then used in the keymap matrix below.
  9. // The underscores don't mean anything - you can have a layer called STUFF or any other name.
  10. // Layer names don't all need to be of the same length, obviously, and you can also skip them
  11. // entirely and just use numbers.
  12. #define _BASE 0
  13. #define _MOVE 1
  14. #define _SYMB 2
  15. #define _FUNC 3
  16. enum planck_keycodes {
  17. BASE = SAFE_RANGE,
  18. MOVE,
  19. SYMB,
  20. FUNC,
  21. LOCK
  22. };
  23. // Fillers to make layering more clear
  24. #define _______ KC_TRNS
  25. #define XXXXXXX KC_NO
  26. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  27. /* BASE
  28. * ,-----------------------------------------------------------------------------------.
  29. * | Tab | Q | W | F | P | G | J | L | U | Y | ; | - |
  30. * |------+------+------+------+------+-------------+------+------+------+------+------|
  31. * | Bksp | A | R | S | T | D | H | N | E | I | O | " |
  32. * |------+------+------+------+------+------|------+------+------+------+------+------|
  33. * | Shift| Z | X | C | V | B | K | M | , | . | / |Shift |
  34. * |------+------+------+------+------+------+------+------+------+------+------+------|
  35. * | Func | Ctrl | Alt | GUI | Symb |Enter |Space | Move | GUI | Alt | Ctrl |Caps |
  36. * `-----------------------------------------------------------------------------------'
  37. */
  38. [_BASE] = {
  39. {KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_MINS},
  40. {KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT},
  41. {KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT},
  42. {FUNC, KC_LCTL, KC_LALT, KC_LGUI, SYMB, KC_ENT, KC_SPC, MOVE, KC_RGUI, KC_RALT, KC_RCTL, KC_CAPS}
  43. },
  44. /* MOVE
  45. * ,-----------------------------------------------------------------------------------.
  46. * | Esc | | Home | Up | End | | | Home | Up | End | | Esc |
  47. * |------+------+------+------+------+-------------+------+------+------+------+------|
  48. * | Del | | Left | Down |Right | | | Left | Down |Right | | Del |
  49. * |------+------+------+------+------+------|------+------+------+------+------+------|
  50. * | | | |Pg Up |Pg Dn | | |Pg Dn |Pg Up | | | |
  51. * |------+------+------+------+------+------+------+------+------+------+------+------|
  52. * | | | | | | | | | | | | |
  53. * `-----------------------------------------------------------------------------------'
  54. */
  55. [_MOVE] = {
  56. {KC_ESC, _______, KC_HOME, KC_UP, KC_END, _______, _______, KC_HOME, KC_UP, KC_END, _______, KC_ESC},
  57. {KC_DEL, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, KC_LEFT, KC_DOWN, KC_RGHT, _______, KC_DEL},
  58. {_______, _______, _______, KC_PGUP, KC_PGDN, _______, _______, KC_PGDN, KC_PGUP, _______, _______, _______},
  59. {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
  60. },
  61. /* SYMB
  62. * ,-----------------------------------------------------------------------------------.
  63. * | Esc | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Esc |
  64. * |-----------------------------------------------------------------------------------.
  65. * | Del | ! | @ | # | $ | % | ^ | & | * | ( | ) | Del |
  66. * |------+------+------+------+------+-------------+------+------+------+------+------|
  67. * | | ~ | ` | + | = | | | \ | [ | ] | { | } | |
  68. * |------+------+------+------+------+------+------+------+------+------+------+------|
  69. * | | | | | | | | | | | | |
  70. * `-----------------------------------------------------------------------------------'
  71. */
  72. [_SYMB] = {
  73. {KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_ESC },
  74. {KC_DEL, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL },
  75. {_______, KC_TILD, KC_GRV, KC_PLUS, KC_EQL, KC_PIPE, KC_BSLS, KC_LBRC, KC_RBRC, KC_LCBR, KC_RCBR, _______},
  76. {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}
  77. },
  78. /* FUNC
  79. * ,-----------------------------------------------------------------------------------.
  80. * | F12 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 |
  81. * |-----------------------------------------------------------------------------------.
  82. * | | Play | Prev | Next | BL+ | | | Lock | | | | |
  83. * |------+------+------+------+------+------|------+------+------+------+------+------|
  84. * | | Mute | Vol- | Vol+ | BL- | | | | | | | |
  85. * |------+------+------+------+------+------+------+------+------+------+------+------|
  86. * | | | | | | | | | | | |Reset |
  87. * `-----------------------------------------------------------------------------------'
  88. */
  89. [_FUNC] = {
  90. {KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11 },
  91. {_______, KC_MPLY, KC_MPRV, KC_MNXT, KC_PAUS, _______, _______, LOCK, _______, _______, _______, _______},
  92. {_______, KC_MUTE, KC_VOLD, KC_VOLU, KC_SLCK, _______, _______, _______, _______, _______, _______, _______},
  93. {_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET }
  94. }
  95. };
  96. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  97. switch (keycode) {
  98. case MOVE:
  99. if (record->event.pressed) {
  100. layer_on(_MOVE);
  101. update_tri_layer(_MOVE, _SYMB, _FUNC);
  102. } else {
  103. layer_off(_MOVE);
  104. update_tri_layer(_MOVE, _SYMB, _FUNC);
  105. }
  106. return false;
  107. break;
  108. case SYMB:
  109. if (record->event.pressed) {
  110. layer_on(_SYMB);
  111. update_tri_layer(_MOVE, _SYMB, _FUNC);
  112. } else {
  113. layer_off(_SYMB);
  114. update_tri_layer(_MOVE, _SYMB, _FUNC);
  115. }
  116. return false;
  117. break;
  118. case FUNC:
  119. if (record->event.pressed) {
  120. layer_on(_FUNC);
  121. } else {
  122. layer_off(_FUNC);
  123. }
  124. return false;
  125. break;
  126. case LOCK:
  127. if (record->event.pressed) {
  128. register_code(KC_RSFT);
  129. register_code(KC_RCTL);
  130. register_code(KC_POWER);
  131. } else {
  132. unregister_code(KC_POWER);
  133. unregister_code(KC_RCTL);
  134. unregister_code(KC_RSFT);
  135. }
  136. return false;
  137. break;
  138. }
  139. return true;
  140. }