keymap.c 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* Copyright 2020 Steven Nguyen
  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 framework_layers {
  18. _BASE,
  19. _LOWER,
  20. _RAISE,
  21. _BOTH,
  22. _FN
  23. };
  24. enum framework_keycodes {
  25. LOWER = SAFE_RANGE,
  26. RAISE,
  27. BOTH,
  28. FN
  29. };
  30. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  31. [_BASE] = framework_via(
  32. KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MEDIA_PLAY_PAUSE,
  33. KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
  34. KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
  35. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
  36. KC_LCTL, KC_LGUI, KC_LALT, MO(_FN), MO(_LOWER), KC_SPC, KC_SPC, MO(_RAISE), KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
  37. KC_AUDIO_VOL_DOWN, KC_AUDIO_VOL_UP
  38. ),
  39. [_LOWER] = framework_via(
  40. _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MINS, KC_EQL, _______,
  41. _______, KC_F1, KC_F2, KC_F3, KC_F4, _______, _______, _______, _______, KC_LBRC, KC_RBRC, KC_BSLS,
  42. KC_DEL, KC_F5, KC_F6, KC_F7, KC_F8, _______, _______, _______, _______, _______, _______, _______,
  43. _______, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, _______, _______, _______,
  44. _______, _______, _______, _______, _______, _______, _______, MO(_BOTH), KC_HOME, KC_PGDN, KC_PGUP, KC_END,
  45. C(S(KC_TAB)), C(KC_TAB)
  46. ),
  47. [_RAISE] = framework_via(
  48. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  49. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  50. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  51. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  52. _______, _______, _______, _______, MO(_BOTH), _______, _______, _______, _______, _______, _______, _______,
  53. C(KC_LEFT), C(KC_RIGHT)
  54. ),
  55. [_BOTH] = framework_via(
  56. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  57. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  58. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  59. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  60. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EEP_RST, DEBUG,
  61. C(KC_Z), C(KC_Y)
  62. ),
  63. [_FN] = framework_via(
  64. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  65. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  66. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  67. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  68. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  69. KC_MS_WH_LEFT, KC_MS_WH_RIGHT
  70. )
  71. };
  72. bool encoder_update_user(uint8_t index, bool clockwise) {
  73. uint8_t layer = get_highest_layer(layer_state);
  74. if (index == 0) {
  75. if (clockwise) {
  76. tap_code16(dynamic_keymap_get_keycode(layer, 10, 1));
  77. } else {
  78. tap_code16(dynamic_keymap_get_keycode(layer, 10, 0));
  79. }
  80. }
  81. return true;
  82. }