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.

107 lines
7.6 KiB

  1. /*
  2. Copyright 2020 Alec Penland
  3. Copyright 2020 Garret Gartner
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #include QMK_KEYBOARD_H
  16. // Layer names
  17. enum ats_layers{
  18. // - Base layer:
  19. _BASE,
  20. // - Symbols, numbers, and functions:
  21. _FN,
  22. // - Alternate Function layer:
  23. _LN
  24. };
  25. #define RS_SLS RSFT_T(KC_SLSH)
  26. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  27. /* Default QWERTY layer
  28. *
  29. * Esc Q W E R T Y U I O P DelBkS PgU
  30. *
  31. * Tab A S D F G H J K L ' Enter PgD
  32. *
  33. * LShift Z X C V B N M , . Sft/ CAP
  34. *
  35. * LCtlOS LAlt Fn Space RAlt Ln
  36. *
  37. *
  38. */
  39. [_BASE] = LAYOUT_split_space(
  40. KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL, KC_BSPC, KC_PGUP,
  41. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_QUOTE, KC_ENT, KC_PGDN,
  42. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, RS_SLS, KC_UP, KC_CAPS,
  43. KC_LCTL, KC_LGUI, KC_LALT, MO(_FN), KC_SPACE, KC_RALT, MO(_LN), KC_LEFT, KC_DOWN, KC_RIGHT
  44. ),
  45. /* Main Numbers, Symbols & Function Layer (MOMENTARY)
  46. *
  47. * ! @ # $ % ^ & * [ ] \ Hme
  48. *
  49. * 1 2 3 4 5 6 7 8 9 0 End
  50. *
  51. * ( ) ; . - + * / =
  52. *
  53. *
  54. *
  55. *
  56. */
  57. [_FN] = LAYOUT_split_space(
  58. _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LBRC, KC_RBRC, KC_BSLS, _______, KC_HOME,
  59. _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_ENTER, KC_END,
  60. _______, KC_LPRN, KC_RPRN, KC_SCLN, KC_DOT, _______, KC_MINS, KC_PLUS, KC_ASTR, KC_SLSH, KC_EQL, _______, _______,
  61. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
  62. ),
  63. /* ALTERNATE Function layer (MOMENTARY)
  64. *
  65. * PWRF1 F2 F3 F4 F5 F6 PRVNXT VL+
  66. *
  67. * SLP F7 F8 F9 F10F11F12 PLAY VL-
  68. *
  69. * WAKE
  70. *
  71. * RSET
  72. *
  73. *
  74. */
  75. [_LN] = LAYOUT_split_space(
  76. KC_PWR, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, _______, _______, _______, _______, KC_MPRV, KC_MNXT, KC_VOLU,
  77. KC_SLEP, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, _______, _______, _______, KC_MPLY, KC_VOLD,
  78. KC_WAKE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
  79. RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______
  80. )
  81. };
  82. //function for layer indicator LED
  83. layer_state_t layer_state_set_user(layer_state_t state) {
  84. writePin(D0, layer_state_cmp(state, 0));
  85. writePin(D1, layer_state_cmp(state, 1));
  86. writePin(D2, layer_state_cmp(state, 2));
  87. return state;
  88. }
  89. void encoder_update_user(uint8_t index, bool clockwise) {
  90. if (index == 0) {
  91. if (clockwise) {
  92. tap_code(KC_VOLU);
  93. } else {
  94. tap_code(KC_VOLD);
  95. }
  96. }
  97. }