You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
3.7 KiB

  1. /* Copyright 2021 qpockets
  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. #include QMK_KEYBOARD_H
  17. enum layers{
  18. _BASE,
  19. _GAME,
  20. _SYM,
  21. _NAV
  22. };
  23. enum combo_events {
  24. COMBO_BSPC,
  25. COMBO_ENT,
  26. COMBO_TAB,
  27. COMBO_ESC,
  28. COMBO_DEL
  29. };
  30. #define KC_DZ LT(_NAV, KC_Z)
  31. #define KC_UP_SPC LT(_SYM, KC_SPC)
  32. //#define KC_GUP_BSPC LT(_SYM, KC_BSPC)
  33. #define KC_SF LSFT_T(KC_F)
  34. #define KC_SJ RSFT_T(KC_J)
  35. #define SNIP S(G(KC_S))
  36. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  37. [_BASE] = LAYOUT_625_bar(
  38. KC_MPLY, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_DEL, KC_Y, KC_U, KC_I, KC_O, KC_P,
  39. KC_MNXT, KC_A, KC_S, KC_D, KC_SF, KC_G, KC_RGUI, KC_H, KC_SJ, KC_K, KC_L, KC_QUOT,
  40. KC_MPRV, KC_DZ, KC_X, KC_C, KC_V, KC_B, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
  41. SNIP, KC_LGUI, KC_LCTL, KC_UP_SPC, KC_RALT, TG(_GAME)
  42. ),
  43. [_GAME] = LAYOUT_625_bar(
  44. KC_TRNS, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_ESC, KC_Y, KC_U, KC_I, KC_O, KC_P,
  45. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_LSFT, KC_H, KC_SJ, KC_K, KC_L, KC_QUOT,
  46. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
  47. KC_LCTRL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_TRNS
  48. ),
  49. [_SYM] = LAYOUT_625_bar(
  50. KC_TRNS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_TRNS, KC_6, KC_7, KC_8, KC_9, KC_0,
  51. KC_TRNS, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_TRNS, KC_CIRC, KC_AMPR, KC_ASTR, KC_EQUAL, KC_MINS,
  52. KC_TRNS, KC_PIPE, KC_BSLS, KC_LPRN, KC_LBRC, KC_SCLN, KC_TRNS, KC_COLN, KC_RBRC, KC_RPRN, KC_PLUS, KC_UNDS,
  53. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
  54. ),
  55. [_NAV] = LAYOUT_625_bar(
  56. KC_TRNS, KC_TRNS, KC_HOME, KC_UP, KC_END, KC_PGUP, RESET, KC_F1, KC_F2, KC_F3, KC_F4, KC_BSPC,
  57. KC_TRNS, KC_TRNS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_PGDN, KC_TRNS, KC_F5, KC_F6, KC_F7, KC_F8, KC_TAB,
  58. KC_TRNS, KC_TRNS, KC_MPRV, KC_MPLY, KC_MNXT, KC_TRNS, KC_CAPS, KC_F9, KC_F10, KC_F11, KC_F12, KC_ENT,
  59. KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
  60. ),
  61. };
  62. bool encoder_update_user(uint8_t index, bool clockwise) {
  63. if (index == 0) { /* left encoder */
  64. if (clockwise) {
  65. tap_code(KC_VOLU);
  66. } else {
  67. tap_code(KC_VOLD);
  68. }
  69. } else if (index == 1) { /* center encoder */
  70. if (clockwise) {
  71. tap_code(KC_WH_D);
  72. } else {
  73. tap_code(KC_WH_U);
  74. }
  75. }
  76. return true;
  77. }
  78. #ifdef COMBO_ENABLE
  79. const uint16_t PROGMEM combo_bspc[] = {KC_O, KC_P, COMBO_END};
  80. const uint16_t PROGMEM combo_ent[] = {KC_K, KC_L, COMBO_END};
  81. const uint16_t PROGMEM combo_tab[] = {KC_S, KC_D, COMBO_END};
  82. const uint16_t PROGMEM combo_esc[] = {KC_T, KC_Y, COMBO_END};
  83. const uint16_t PROGMEM combo_del[] = {KC_Q, KC_W, COMBO_END};
  84. combo_t key_combos[COMBO_COUNT] = {
  85. [COMBO_BSPC] = COMBO(combo_bspc,KC_BSPC),
  86. [COMBO_ENT] = COMBO(combo_ent,KC_ENT),
  87. [COMBO_TAB] = COMBO(combo_tab,KC_TAB),
  88. [COMBO_ESC] = COMBO(combo_esc,KC_ESC),
  89. [COMBO_DEL] = COMBO(combo_del,KC_DEL)
  90. };
  91. #endif