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.

123 lines
4.1 KiB

[Keymap] Add DZ60, Levinson keymaps, twschum user files (#7358) * Adds layout for DZ60rev2 plate B, options 4 and 10 * Use KC_TRANS for layer keys * Format layer0 with visual key size layout * Add RGB controls; add start description; add KC_LOCK * Update comments on rules.mk for DZ60 * Gets keymap compiling * Fix wiring for shift on row 3 * Hold a with other key to send Ctrl-A before other key * Adds compile-time defined mac-compatability media keycodes * Adds logic in place for capturing taps (w/ timeout) * Add send_keys(...) which can send up to 64 nested keycodes * Implement send_keys callable with n repeats * Tweaks some of the keymap * Add reset keycode; add disable to custom shortcuts * Adds a special "off" layer where bonus mod goes to layer 0, every other key KC_NO * Adjust timeout; mousekey settings * Changes layout of Home,End,PgUp/Dn on the dedicated arrow keys L1/L2 * PoC on rgb lighted layer indication * Refactors color table defines * Adds logic for controlling layer lights * Only change state on one side of the event lol * Switch back to Tapping Toggle for layer 4 * Add custom config file for keyboard; TT and mousekey settings * Code cleanup; starting to refactor special ctrl tapping keys functions * Move defines and reak out functions * Remove debugging light * Adjust keymaps; add enter * Adds a couple custom macros * Add simplified version of keymap to help debug issues * Adds basi numpad configuration for levinson keyboard half * Use ANSI ctrl key as layer 1 for better one hand (`) * Adapt to new 8bit hue from #5547; layer enum use everywhere * Move custom code out to users/ space * Flip col pins, move key assignments to "left hand" * Update readme * Implement placeholder macros * Notes * Reduce tapping time for SFT_T(/) * Adds vim features; refactors things * Adds fork of the vim features written by xton * Use correct backspace keycode * Add VIM_ESC * Add "OFF" to the RGB/HSV definitions * Clean up rules, use new "OFF" definition * Add windows KC_CALCULATOR key to numpad * Reformat layers with better guide; change layer names * Add sleep key * Change timeout delay * Add a "code paste" which surrounds a ^V with ``` * Try removing shift tap on rshift / * Update macros * Update the "code paste" macro * Update keymap with reset, calc, equals * Update keyboards/dz60/keymaps/twschum_b_4_10_simple/keymap.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update keyboards/dz60/keymaps/twschum_b_4_10/keymap.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update users/twschum/twschum.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Update users/twschum/twschum.c Co-Authored-By: Drashna Jaelre <drashna@live.com> * Revert quantum/rgblight_list.h * Better name for split space layout; rename KEYMAP->LAYOUT * Rename KEYMAP->LAYOUT * Use simpler :flash command * Clean up layout files * Use qmk's MOD_MASK_CTRL * Sync lufa submodule * Cleanup from noroadsleft's PR comments * Modernize vim layer code
4 years ago
  1. #include QMK_KEYBOARD_H
  2. /* Add the stings you want to send as macros, see
  3. * https://docs.qmk.fm/#/feature_macros for what all can be used
  4. */
  5. #define MACRO_0 "zero"
  6. #define MACRO_1 "one"
  7. #define MACRO_2 "two"
  8. #define MACRO_3 "three"
  9. #define MACRO_4 "four"
  10. #define MACRO_5 "five"
  11. #define MACRO_6 "six"
  12. #define MACRO_7 "seven"
  13. #define MACRO_8 "eight"
  14. #define MACRO_9 "nine"
  15. enum macro_keycodes {
  16. M0 = SAFE_RANGE,
  17. M1,
  18. M2,
  19. M3,
  20. M4,
  21. M5,
  22. M6,
  23. M7,
  24. M8,
  25. M9
  26. };
  27. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  28. /* Numpad
  29. * ,-----------------------------------------------------------------------------------.
  30. * | 0 | 1 | 4 | 7 | BkSp |OSL(1)| | | | | | |
  31. * |------+------+------+------+------+------+------+------+------+------+------+------|
  32. * | , | 2 | 5 | 8 | / | Down | | | | | | |
  33. * |------+------+------+------+------+------+------+------+------+------+------+------|
  34. * | . | 3 | 6 | 9 | * | Up | | | | | | |
  35. * |------+------+------+------+------+------+------+------+------+------+------+------|
  36. * | Enter | + | - | = | MO(1)| | | | | | |
  37. * `-----------------------------------------------------------------------------------'
  38. */
  39. [0] = LAYOUT_ortho_4x12( \
  40. KC_KP_0, KC_KP_1, KC_KP_4, KC_KP_7, KC_BSPACE, OSL(1), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
  41. KC_COMMA, KC_KP_2, KC_KP_5, KC_KP_8, KC_KP_SLASH, KC_DOWN, KC_NO, KC_A, KC_B, KC_C, KC_D, KC_NO, \
  42. KC_KP_DOT, KC_KP_3, KC_KP_6, KC_KP_9, KC_KP_ASTERISK, KC_UP, KC_NO, KC_E, KC_F, KC_G, KC_H, KC_NO, \
  43. KC_KP_ENTER, KC_NO, KC_KP_PLUS, KC_KP_MINUS, KC_KP_EQUAL, MO(1), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO \
  44. ),
  45. /* Macro layer - the number keys are macros,
  46. * other functions on remaining keys
  47. * ,-----------------------------------------.
  48. * | M(0) | M(1) | M(4) | M(7) | | Esc |
  49. * |------+------+------+------+------+------|
  50. * | Left | M(2) | M(5) | M(8) | | |
  51. * |------+------+------+------+------+------|
  52. * | Right| M(3) | M(6) | M(9) | | |
  53. * |------+------+------+------+------+------|
  54. * | NumLock | RESET| | | Calc |
  55. * `-----------------------------------------'
  56. */
  57. [1] = LAYOUT_ortho_4x12( \
  58. M0, M1, M4, M7, KC_NO, KC_ESC, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
  59. KC_LEFT, M2, M5, M8, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
  60. KC_RIGHT, M3, M6, M8, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, \
  61. KC_NUMLOCK, RESET, KC_NO, KC_NO, KC_CALC, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO \
  62. )
  63. };
  64. bool process_record_user(uint16_t keycode, keyrecord_t *record) {
  65. switch (keycode) {
  66. case M0:
  67. if (record->event.pressed) {
  68. SEND_STRING(MACRO_0);
  69. }
  70. break;
  71. case M1:
  72. if (record->event.pressed) {
  73. SEND_STRING(MACRO_1);
  74. }
  75. break;
  76. case M2:
  77. if (record->event.pressed) {
  78. SEND_STRING(MACRO_2);
  79. }
  80. break;
  81. case M3:
  82. if (record->event.pressed) {
  83. SEND_STRING(MACRO_3);
  84. }
  85. break;
  86. case M4:
  87. if (record->event.pressed) {
  88. SEND_STRING(MACRO_4);
  89. }
  90. break;
  91. case M5:
  92. if (record->event.pressed) {
  93. SEND_STRING(MACRO_5);
  94. }
  95. break;
  96. case M6:
  97. if (record->event.pressed) {
  98. SEND_STRING(MACRO_6);
  99. }
  100. break;
  101. case M7:
  102. if (record->event.pressed) {
  103. SEND_STRING(MACRO_7);
  104. }
  105. break;
  106. case M8:
  107. if (record->event.pressed) {
  108. SEND_STRING(MACRO_8);
  109. }
  110. break;
  111. case M9:
  112. if (record->event.pressed) {
  113. SEND_STRING(MACRO_9);
  114. }
  115. break;
  116. }
  117. return true;
  118. };