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.

103 lines
3.7 KiB

  1. Copyright 2021 Jonavin Eng @Jonavin
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 2 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. LAYERS:
  13. - 0 = _BASE
  14. - 1 = _FN1
  15. - 2 = _LOWER
  16. - 3 = _RAISE
  17. KEYCODES:
  18. - KC_CAD Ctrl-Alt-Del
  19. - KC_AF4 Alt-F4
  20. - KC_TASK Windows Task Manager (Ctrl-Shift-Esc)
  21. - LSFT_CAPSLOCK When LSFT_CAPSLOCK_ENABLE is defined, hold for Shift double tap for CAPSLOCK; otherwise, just Shift
  22. - KC_00 double zero "00"
  23. - KC_WINLCK toggles LGui/Win key lock
  24. - RGB_TOI Increase Timeout idle time threshold
  25. - RGB_TOD Decrease Timeout idle time threshold
  26. - CT_PGUP Ctrl-PgUp
  27. - CT_PGDN Ctrl-PgDn
  28. - CT_HOME Ctrl-HOme
  29. - CT_END Ctrl-End
  30. -
  31. When EMOTICON_ENABLE = yes
  32. - EMO_SHRUG `\_("/)_/`
  33. - EMO_CONFUSE (*_*)
  34. - EMD_TEARS (T_T)
  35. - EMO_NERVOUS (~_~;)
  36. - EMO_JOY (^o^)
  37. AVAILABLE ENCODER ACTIONS:
  38. - void encoder_action_volume(bool clockwise);
  39. - void encoder_action_mediatrack(bool clockwise);
  40. - void encoder_action_navword(bool clockwise);
  41. - void encoder_action_navpage(bool clockwise);
  42. -
  43. - uint8_t get_selected_layer(void);
  44. - void encoder_action_layerchange(bool clockwise);
  45. -
  46. - void encoder_action_rgb_speed(bool clockwise);
  47. - void encoder_action_rgb_hue(bool clockwise);
  48. - void encoder_action_rgb_saturation(bool clockwise);
  49. - void encoder_action_rgb_brightness(bool clockwise);
  50. - void encoder_action_rgb_mode(bool clockwise);
  51. ENABLE FEATURES your keymap rules.mk
  52. ---------------------------------------
  53. STARTUP_NUMLOCK_ON = yes
  54. - turns on NUMLOCK by default
  55. ENCODER_DEFAULTACTIONS_ENABLE = yes
  56. - Enabled default encoder funtions
  57. - When enabled, use this in the keymap for an additional encoder processing
  58. - bool encoder_update_keymap(uint8_t index, bool clockwise)
  59. OPTION: set ENCODER_DEFAULTACTIONS_INDEX to the encoder number if the encoder is not index 0
  60. TD_LSFT_CAPSLOCK_ENABLE = yes
  61. - This will enable double tap on Left Shift to toggle CAPSLOCK
  62. - KC_LSFTCAPS to bind to left Shift to enable feature
  63. - KC_LSFTCAPSWIN does the same thing but will not turn on CAPS when Win Lkey is disabled
  64. IDLE_TIMEOUT_ENABLE = yes
  65. - Enables Timer functionality; for RGB idle timeouts that can be changed dynamically
  66. - When enabled, use this in the keymap for an additional matrix processing: void matrix_scan_keymap(void)
  67. - Functions:
  68. - u16int_t get_timeout_threshold(void) // returns the current timeout threshold
  69. - void timeout_update_threshold(bool increase) // change threshold: true = increase, false = decrease
  70. - void timeout_reset_timer(void) // resets timer (put in process_record_user if you override it)
  71. - void timeout_tick_timer(void) // registers time ticks (put in maxtrix_scan_user if you override it)
  72. Other Functions:
  73. - activate_numlock(bool turn_on) // true = turn on NUM LOCK, false = off
  74. KEYMAP LEVEL ADDITIONAL PROCESSING FUNCTIONS
  75. - bool process_record_keymap(uint16_t keycode, keyrecord_t *record)
  76. - void keyboard_post_init_keymap(void)
  77. LIST OF COMPATIBLE KEYMAPS
  78. - gmmk/pro/ansi
  79. - keebio/quefrency/rev3
  80. - mechwild/mercutio
  81. - mechwild/murphpad
  82. - mechwild/OBE
  83. - nopunin10did/kastenwagen (*)
  84. (*) coming soon