keymap.c 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
  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 "drashna.h"
  17. // Fillers to make layering more clear
  18. #define TT_MDIA TT(_MEDIA)
  19. // enum more_custom_keycodes {
  20. // KC_P00 = NEW_SAFE_RANGE
  21. //};
  22. // clang-format off
  23. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  24. [_NUMLOCK] = LAYOUT_ortho_5x7(
  25. KC_NO, TG_DBLO, TG_GAME, KC_NUM, KC_SCRL, KC_COLN, KC_PSLS,
  26. TT_MDIA, KC_CALC, XXXXXXX, KC_P7, KC_P8, KC_P9, KC_PAST,
  27. KC_HOME, KC_DEL, KC_PGUP, KC_P4, KC_P5, KC_P6, KC_PMNS,
  28. KC_END, KC_UP, KC_PGDN, KC_P1, KC_P2, KC_P3, KC_PPLS,
  29. KC_LEFT, KC_DOWN, KC_RGHT, KC_P0, KC_PDOT, KC_COLN, KC_PENT
  30. ),
  31. [_DIABLO] = LAYOUT_ortho_5x7(
  32. KC_ESC, _______, KC_V, KC_D, XXXXXXX, XXXXXXX, KC_L,
  33. KC_TAB, KC_S, KC_F, KC_I, KC_M, KC_T, KC_J,
  34. KC_Q, KC_1, KC_2, KC_3, KC_4, KC_G, KC_F,
  35. KC_LCTL, KC_D3_3, KC_D3_3, KC_D3_3, KC_D3_3, KC_Z, KC_DIABLO_CLEAR,
  36. KC_LALT, KC_F4, KC_F5, KC_F8, KC_F9, KC_F10, SFT_T(KC_SPACE)
  37. ),
  38. [_GAMEPAD] = LAYOUT_ortho_5x7( // Game pad layout designed primarily for Overwatch
  39. KC_NO, KC_ESC, _______, KC_1, KC_2, KC_3, KC_4,
  40. TT_MDIA, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T,
  41. KC_Z, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G,
  42. KC_Y, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
  43. KC_F1, KC_U, KC_I, KC_Y, KC_V, KC_SPC, KC_V
  44. ),
  45. [_MEDIA] = LAYOUT_ortho_5x7(
  46. QK_MAKE, QK_BOOT, MU_TOGG, AU_ON, AU_OFF, CK_TOGG, RGB_SAD,
  47. _______, EE_CLR, KC_RGB_T,RGB_M_P, RGB_M_B, RGB_M_R, RGB_SAI,
  48. RGB_TOG, RGB_MOD, RGB_RMOD,RGB_M_SW,RGB_M_SN,RGB_M_K, RGB_HUD,
  49. KC_MPLY, KC_MPRV, KC_MNXT, RGB_M_X, RGB_M_G, RGB_M_P, RGB_HUI,
  50. KC_MUTE, KC_VOLD, KC_VOLU, XXXXXXX, XXXXXXX, RGB_VAD, RGB_VAI
  51. )
  52. };
  53. // clang-format on
  54. bool process_record_keymap(uint16_t keycode, keyrecord_t *record) {
  55. // switch (keycode) {
  56. // case KC_P00:
  57. // if (!record->event.pressed) {
  58. // tap(KC_KP_0);
  59. // tap(KC_KP_0);
  60. // }
  61. // return false;
  62. // break;
  63. //}
  64. return true;
  65. }