keymap.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /* Copyright 2017 Cole Markham
  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 "meira.h"
  17. #include "issi.h"
  18. #include "lighting.h"
  19. #ifdef RGBLIGHT_ENABLE
  20. //Following line allows macro to read current RGB settings
  21. extern rgblight_config_t rgblight_config;
  22. #endif
  23. #define _QWERTY 0
  24. #define _COLEMAK 1
  25. #define _DVORAK 2
  26. #define _LOWER 3
  27. #define _RAISE 4
  28. #define _ADJUST 16
  29. enum custom_keycodes {
  30. QWERTY = SAFE_RANGE,
  31. COLEMAK,
  32. DVORAK,
  33. LOWER,
  34. RAISE,
  35. ADJUST,
  36. };
  37. // define variables for reactive RGB
  38. bool TOG_STATUS = false;
  39. int RGB_current_mode;
  40. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  41. /* Qwerty
  42. * ,-----------------------------------------------------------------------------------.
  43. * | Esc | Q | W | E | R | T | Y | U | I | O | P | Bksp |
  44. * |------+------+------+------+------+-------------+------+------+------+------+------|
  45. * | Tab | A | S | D | F | G | H | J | K | L | ; | ' |
  46. * |------+------+------+------+------+------|------+------+------+------+------+------|
  47. * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
  48. * |------+------+------+------+------+------+------+------+------+------+------+------|
  49. * |Adjust| Ctrl | Ctrl | Alt |Lower | Cmd |Space |Raise | Left | Down | Up |Right |
  50. * `-----------------------------------------------------------------------------------'
  51. */
  52. [_QWERTY] = KEYMAP( \
  53. KC_ESC, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC, \
  54. KC_TAB, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, \
  55. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT, \
  56. ADJUST, KC_LCTL, KC_LALT, KC_LALT, LOWER, KC_LGUI, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
  57. ),
  58. /* Colemak
  59. * ,-----------------------------------------------------------------------------------.
  60. * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp |
  61. * |------+------+------+------+------+-------------+------+------+------+------+------|
  62. * | Esc | A | R | S | T | D | H | N | E | I | O | " |
  63. * |------+------+------+------+------+------|------+------+------+------+------+------|
  64. * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter |
  65. * |------+------+------+------+------+------+------+------+------+------+------+------|
  66. * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
  67. * `-----------------------------------------------------------------------------------'
  68. */
  69. [_COLEMAK] = KEYMAP( \
  70. KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC, \
  71. KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT, \
  72. KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT , \
  73. ADJUST, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
  74. ),
  75. /* Dvorak
  76. * ,-----------------------------------------------------------------------------------.
  77. * | Tab | " | , | . | P | Y | F | G | C | R | L | Bksp |
  78. * |------+------+------+------+------+-------------+------+------+------+------+------|
  79. * | Esc | A | O | E | U | I | D | H | T | N | S | / |
  80. * |------+------+------+------+------+------|------+------+------+------+------+------|
  81. * | Shift| ; | Q | J | K | X | B | M | W | V | Z |Enter |
  82. * |------+------+------+------+------+------+------+------+------+------+------+------|
  83. * |Adjust| Ctrl | Alt | GUI |Lower |Space |Space |Raise | Left | Down | Up |Right |
  84. * `-----------------------------------------------------------------------------------'
  85. */
  86. [_DVORAK] = KEYMAP( \
  87. KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC, \
  88. KC_ESC, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH, \
  89. KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_ENT , \
  90. ADJUST, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT \
  91. ),
  92. /* Lower
  93. * ,-----------------------------------------------------------------------------------.
  94. * | | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
  95. * |------+------+------+------+------+-------------+------+------+------+------+------|
  96. * | ~ | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | | \ | | |
  97. * |------+------+------+------+------+------|------+------+------+------+------+------|
  98. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | | |Enter |
  99. * |------+------+------+------+------+------+------+------+------+------+------+------|
  100. * | | | | | | | | Next | Vol- | Vol+ | Play |
  101. * `-----------------------------------------------------------------------------------'
  102. */
  103. [_LOWER] = KEYMAP( \
  104. _______, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_DEL, \
  105. KC_TILD, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE, \
  106. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12,S(KC_NUHS),S(KC_NUBS),_______, _______, KC_QUOT, \
  107. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END \
  108. ),
  109. /* Raise
  110. * ,-----------------------------------------------------------------------------------.
  111. * | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
  112. * |------+------+------+------+------+-------------+------+------+------+------+------|
  113. * | ` | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
  114. * |------+------+------+------+------+------|------+------+------+------+------+------|
  115. * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / | | |Enter |
  116. * |------+------+------+------+------+------+------+------+------+------+------+------|
  117. * | | | | | | | | Home | PgUp | PgDn | End |
  118. * `-----------------------------------------------------------------------------------'
  119. */
  120. [_RAISE] = KEYMAP( \
  121. _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL, \
  122. KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS, \
  123. _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, _______, _______, _______, \
  124. _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END \
  125. ),
  126. /* Adjust (Lower + Raise)
  127. * ,-----------------------------------------------------------------------------------.
  128. * | | Reset| | | | | | | | | | Del |
  129. * |------+------+------+------+------+-------------+------+------+------+------+------|
  130. * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak| | |
  131. * |------+------+------+------+------+------|------+------+------+------+------+------|
  132. * | | | | | | | | | | | | |
  133. * |------+------+------+------+------+------+------+------+------+------+------+------|
  134. * | | | | | | | | | | | |
  135. * `-----------------------------------------------------------------------------------'
  136. */
  137. [_ADJUST] = KEYMAP( \
  138. BL_TOGG, RESET, _______, KC_MRWD, KC_MPLY, KC_MFFD, KC_PSCR, _______, KC_MUTE, KC_VOLD, KC_VOLU, KC_DEL, \
  139. BL_STEP, RGB_MOD, _______, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, _______, _______, \
  140. _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, \
  141. _______, KC_PSCR, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ \
  142. )
  143. };
  144. const uint16_t PROGMEM fn_actions[] = {
  145. };
  146. // Setting ADJUST layer RGB back to default
  147. void update_tri_layer_RGB(uint8_t layer1, uint8_t layer2, uint8_t layer3) {
  148. if (IS_LAYER_ON(layer1) && IS_LAYER_ON(layer2)) {
  149. #ifdef RGBLIGHT_ENABLE
  150. rgblight_mode(RGB_current_mode);
  151. #endif
  152. layer_on(layer3);
  153. } else {
  154. layer_off(layer3);
  155. }
  156. }
  157. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
  158. {
  159. // MACRODOWN only works in this function
  160. switch(id) {
  161. case 0:
  162. if (record->event.pressed) {
  163. register_code(KC_RSFT);
  164. } else {
  165. unregister_code(KC_RSFT);
  166. }
  167. break;
  168. }
  169. return MACRO_NONE;
  170. };
  171. void matrix_init_user(void) {
  172. }
  173. void matrix_scan_user(void) {
  174. }
  175. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  176. switch (keycode) {
  177. case QWERTY:
  178. if (record->event.pressed) {
  179. #ifdef AUDIO_ENABLE
  180. PLAY_NOTE_ARRAY(tone_qwerty, false, 0);
  181. #endif
  182. // persistent_default_layer_set(1UL<<_QWERTY);
  183. }
  184. return false;
  185. break;
  186. case COLEMAK:
  187. if (record->event.pressed) {
  188. #ifdef AUDIO_ENABLE
  189. PLAY_NOTE_ARRAY(tone_colemak, false, 0);
  190. #endif
  191. // persistent_default_layer_set(1UL<<_COLEMAK);
  192. }
  193. return false;
  194. break;
  195. case DVORAK:
  196. if (record->event.pressed) {
  197. #ifdef AUDIO_ENABLE
  198. PLAY_NOTE_ARRAY(tone_dvorak, false, 0);
  199. #endif
  200. // persistent_default_layer_set(1UL<<_DVORAK);
  201. }
  202. return false;
  203. break;
  204. case LOWER:
  205. if (record->event.pressed) {
  206. //not sure how to have keyboard check mode and set it to a variable, so my work around
  207. //uses another variable that would be set to true after the first time a reactive key is pressed.
  208. if (TOG_STATUS) { //TOG_STATUS checks is another reactive key currently pressed, only changes RGB mode if returns false
  209. } else {
  210. TOG_STATUS = !TOG_STATUS;
  211. #ifdef RGBLIGHT_ENABLE
  212. rgblight_mode(16);
  213. #endif
  214. }
  215. layer_on(_LOWER);
  216. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  217. } else {
  218. #ifdef RGBLIGHT_ENABLE
  219. rgblight_mode(RGB_current_mode); // revert RGB to initial mode prior to RGB mode change
  220. #endif
  221. TOG_STATUS = false;
  222. layer_off(_LOWER);
  223. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  224. }
  225. return false;
  226. break;
  227. case RAISE:
  228. if (record->event.pressed) {
  229. //not sure how to have keyboard check mode and set it to a variable, so my work around
  230. //uses another variable that would be set to true after the first time a reactive key is pressed.
  231. if (TOG_STATUS) { //TOG_STATUS checks is another reactive key currently pressed, only changes RGB mode if returns false
  232. } else {
  233. TOG_STATUS = !TOG_STATUS;
  234. #ifdef RGBLIGHT_ENABLE
  235. rgblight_mode(15);
  236. #endif
  237. }
  238. layer_on(_RAISE);
  239. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  240. } else {
  241. #ifdef RGBLIGHT_ENABLE
  242. rgblight_mode(RGB_current_mode); // revert RGB to initial mode prior to RGB mode change
  243. #endif
  244. layer_off(_RAISE);
  245. TOG_STATUS = false;
  246. update_tri_layer_RGB(_LOWER, _RAISE, _ADJUST);
  247. }
  248. return false;
  249. break;
  250. case ADJUST:
  251. // FIXME add RGB feedback
  252. if (record->event.pressed) {
  253. layer_on(_ADJUST);
  254. } else {
  255. layer_off(_ADJUST);
  256. }
  257. return false;
  258. break;
  259. case BL_TOGG:
  260. #ifdef ISSI_ENABLE
  261. if (record->event.pressed) {
  262. print("Enabling backlight\n");
  263. issi_init();
  264. }
  265. #endif
  266. return false;
  267. break;
  268. case BL_STEP:
  269. if (record->event.pressed) {
  270. print("Stepping backlight\n");
  271. #ifdef BACKLIGHT_ENABLE
  272. print("Really stepping backlight\n");
  273. backlight_step();
  274. #endif
  275. }
  276. return false;
  277. break;
  278. //led operations - RGB mode change now updates the RGB_current_mode to allow the right RGB mode to be set after reactive keys are released
  279. #ifdef RGBLIGHT_ENABLE
  280. case RGB_MOD:
  281. if (record->event.pressed) {
  282. rgblight_mode(RGB_current_mode);
  283. rgblight_step();
  284. RGB_current_mode = rgblight_config.mode;
  285. }
  286. return false;
  287. break;
  288. #endif
  289. // case BL_INC:
  290. // meira_inc_backlight_level();
  291. // return false;
  292. // break;
  293. }
  294. return true;
  295. }
  296. void led_set_user(uint8_t usb_led) {
  297. }