keymap.c 14 KB

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