keymap.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. #include QMK_KEYBOARD_H
  2. // Each layer gets a name for readability, which is then used in the keymap matrix below.
  3. // The underscores don't mean anything - you can have a layer called STUFF or any other name.
  4. // Layer names don't all need to be of the same length, obviously, and you can also skip them
  5. // entirely and just use numbers.
  6. #define _QWERTY 0
  7. #define _LOWER 1
  8. #define _RAISE 2
  9. #define _ADJUST 3
  10. enum custom_keycodes {
  11. QWERTY = SAFE_RANGE,
  12. LOWER,
  13. RAISE,
  14. ADJUST,
  15. };
  16. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  17. /* Default Layer
  18. * ,-----------------------------------------------------------.
  19. * | Esc| Q | W | E | R | T | Y | U | I | O | P | BS |
  20. * |-----------------------------------------------------------|
  21. * | Tab | A | S | D | F | G | H | J | K | L | Ent |
  22. * |-----------------------------------------------------------|
  23. * | LSft | Z | X | C | V | B | N | M | , | . | /? |
  24. * |-----------------------------------------------------------|
  25. * | LCtl | LGui| LAlt| spc fn0 | spc fn1 |fn2|RAlt|RCtl |
  26. * `-----------------------------------------------------------'
  27. */
  28. [_QWERTY] = LAYOUT( \
  29. KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,\
  30. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT,\
  31. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,\
  32. KC_LCTL, KC_LGUI, KC_LALT, LT(_LOWER, KC_SPC),LT(_RAISE, KC_SPC),LT(_ADJUST, KC_LGUI), KC_RALT, KC_RCTL \
  33. ),
  34. /* Function Layer 1 HHKB style
  35. * ,-----------------------------------------------------------.
  36. * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bkspc|
  37. * |-----------------------------------------------------------|
  38. * | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | [ | ] | Pipe |
  39. * |-----------------------------------------------------------|
  40. * | F7 | F8 | F9 | F10 | F11 | F12 | End|PgDn| ↓ | | |
  41. * |-----------------------------------------------------------|
  42. * | | | | | | Stop| App| |
  43. * `-----------------------------------------------------------'
  44. */
  45. [_LOWER] = LAYOUT( \
  46. KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC, \
  47. KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \
  48. KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),BL_TOGG, BL_INC, BL_DEC, \
  49. _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
  50. ),
  51. /* Function Layer 1 HHKB style
  52. * ,-----------------------------------------------------------.
  53. * |Caps| |MSel| ⏮ | ⏯ | ⏭ |PSCR|SkLk|Paus| ↑ | Ins| Del|
  54. * |-----------------------------------------------------------|
  55. * | | 🔇 | ⏏ | | * | / |Hone|PgUp| ← | → | |
  56. * |-----------------------------------------------------------|
  57. * | | 🔉 | 🔊 | | + | - | End|PgDn| ↓ | | |
  58. * |-----------------------------------------------------------|
  59. * | | | | | | Stop| App| |
  60. * `-----------------------------------------------------------'
  61. */
  62. [_RAISE] = LAYOUT( \
  63. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC, \
  64. KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \
  65. KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, KC_DEL, \
  66. _______, KC_TRNS, _______, KC_TRNS, KC_TRNS, _______, _______, RGB_TOG \
  67. ),
  68. /* Function Layer 1 HHKB style
  69. * ,-----------------------------------------------------------.
  70. * |Caps| |MSel| ⏮ | ⏯ | ⏭ |PSCR|SkLk|Paus| ↑ | Ins| Del|
  71. * |-----------------------------------------------------------|
  72. * | | 🔇 | ⏏ | | * | / |Hone|PgUp| ← | → | |
  73. * |-----------------------------------------------------------|
  74. * | | 🔉 | 🔊 | | + | - | End|PgDn| ↓ | | |
  75. * |-----------------------------------------------------------|
  76. * | | | | | | Stop| App| |
  77. * `-----------------------------------------------------------'
  78. */
  79. [_ADJUST] = LAYOUT( \
  80. _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, \
  81. _______, _______, _______, AU_ON, AU_OFF, AG_NORM, AG_SWAP, _______, _______, _______, _______, \
  82. _______, _______, _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, \
  83. KC_SYSTEM_SLEEP, _______, _______, _______, _______, _______, _______, _______ \
  84. ),
  85. };
  86. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  87. switch (keycode) {
  88. case LOWER:
  89. if (record->event.pressed) {
  90. layer_on(_LOWER);
  91. update_tri_layer(_LOWER, _RAISE, _ADJUST);
  92. } else {
  93. layer_off(_LOWER);
  94. update_tri_layer(_LOWER, _RAISE, _ADJUST);
  95. }
  96. return false;
  97. break;
  98. case RAISE:
  99. if (record->event.pressed) {
  100. layer_on(_RAISE);
  101. update_tri_layer(_LOWER, _RAISE, _ADJUST);
  102. } else {
  103. layer_off(_RAISE);
  104. update_tri_layer(_LOWER, _RAISE, _ADJUST);
  105. }
  106. return false;
  107. break;
  108. case ADJUST:
  109. if (record->event.pressed) {
  110. layer_on(_ADJUST);
  111. } else {
  112. layer_off(_ADJUST);
  113. }
  114. return false;
  115. break;
  116. }
  117. return true;
  118. }