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.

176 lines
6.2 KiB

  1. # Encoders
  2. Basic (EC11 compatible) encoders are supported by adding this to your `rules.mk`:
  3. ```make
  4. ENCODER_ENABLE = yes
  5. ```
  6. and this to your `config.h`:
  7. ```c
  8. #define ENCODERS_PAD_A { B12 }
  9. #define ENCODERS_PAD_B { B13 }
  10. ```
  11. Each PAD_A/B variable defines an array so multiple encoders can be defined, e.g.:
  12. ```c
  13. #define ENCODERS_PAD_A { encoder1a, encoder2a }
  14. #define ENCODERS_PAD_B { encoder1b, encoder2b }
  15. ```
  16. If your encoder's clockwise directions are incorrect, you can swap the A & B pad definitions. They can also be flipped with a define:
  17. ```c
  18. #define ENCODER_DIRECTION_FLIP
  19. ```
  20. Additionally, the resolution, which defines how many pulses the encoder registers between each detent, can be defined with:
  21. ```c
  22. #define ENCODER_RESOLUTION 4
  23. ```
  24. It can also be defined per-encoder, by instead defining:
  25. ```c
  26. #define ENCODER_RESOLUTIONS { 4, 2 }
  27. ```
  28. For 4ร— encoders you also can assign default position if encoder skips pulses when it changes direction. For example, if your encoder send high level on both pins by default, define this:
  29. ```c
  30. #define ENCODER_DEFAULT_POS 0x3
  31. ```
  32. ## Split Keyboards
  33. If you are using different pinouts for the encoders on each half of a split keyboard, you can define the pinout (and optionally, resolutions) for the right half like this:
  34. ```c
  35. #define ENCODERS_PAD_A_RIGHT { encoder1a, encoder2a }
  36. #define ENCODERS_PAD_B_RIGHT { encoder1b, encoder2b }
  37. #define ENCODER_RESOLUTIONS_RIGHT { 2, 4 }
  38. ```
  39. If the `_RIGHT` definitions aren't specified in your `config.h`, then the non-`_RIGHT` versions will be applied to both sides of the split.
  40. Additionally, if one side does not have an encoder, you can specify `{}` for the pins/resolution -- for example, a split keyboard with only a right-side encoder:
  41. ```c
  42. #define ENCODERS_PAD_A { }
  43. #define ENCODERS_PAD_B { }
  44. #define ENCODER_RESOLUTIONS { }
  45. #define ENCODERS_PAD_A_RIGHT { B12 }
  46. #define ENCODERS_PAD_B_RIGHT { B13 }
  47. #define ENCODER_RESOLUTIONS_RIGHT { 4 }
  48. ```
  49. !> Keep in mind that whenver you change the encoder resolution, you will need to reflash the half that has the encoder affected by the change.
  50. ## Encoder map :id=encoder-map
  51. Encoder mapping may be added to your `keymap.c`, which replicates the normal keyswitch layer handling functionality, but with encoders. Add this to your keymap's `rules.mk`:
  52. ```make
  53. ENCODER_MAP_ENABLE = yes
  54. ```
  55. Your `keymap.c` will then need an encoder mapping defined (for four layers and two encoders):
  56. ```c
  57. #if defined(ENCODER_MAP_ENABLE)
  58. const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
  59. [0] = { ENCODER_CCW_CW(KC_MS_WH_UP, KC_MS_WH_DOWN), ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
  60. [1] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI), ENCODER_CCW_CW(RGB_SAD, RGB_SAI) },
  61. [2] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI), ENCODER_CCW_CW(RGB_SPD, RGB_SPI) },
  62. [3] = { ENCODER_CCW_CW(RGB_RMOD, RGB_MOD), ENCODER_CCW_CW(KC_RIGHT, KC_LEFT) },
  63. };
  64. #endif
  65. ```
  66. ?> This should only be enabled at the keymap level.
  67. Using encoder mapping pumps events through the normal QMK keycode processing pipeline, resulting in a _keydown/keyup_ combination pushed through `process_record_xxxxx()`. To configure the amount of time between the encoder "keyup" and "keydown", you can add the following to your `config.h`:
  68. ```c
  69. #define ENCODER_MAP_KEY_DELAY 10
  70. ```
  71. ?> By default, the encoder map delay matches the value of `TAP_CODE_DELAY`.
  72. ## Callbacks
  73. ?> [**Default Behaviour**](https://github.com/qmk/qmk_firmware/blob/master/quantum/encoder.c#L79-#L98): all encoders installed will function as volume up (`KC_VOLU`) on clockwise rotation and volume down (`KC_VOLD`) on counter-clockwise rotation. If you do not wish to override this, no further configuration is necessary.
  74. If you would like the alter the default behaviour, and are not using `ENCODER_MAP_ENABLE = yes`, the callback functions can be inserted into your `<keyboard>.c`:
  75. ```c
  76. bool encoder_update_kb(uint8_t index, bool clockwise) {
  77. if (!encoder_update_user(index, clockwise)) {
  78. return false; /* Don't process further events if user function exists and returns false */
  79. }
  80. if (index == 0) { /* First encoder */
  81. if (clockwise) {
  82. tap_code(KC_PGDN);
  83. } else {
  84. tap_code(KC_PGUP);
  85. }
  86. } else if (index == 1) { /* Second encoder */
  87. if (clockwise) {
  88. rgb_matrix_increase_hue();
  89. } else {
  90. rgb_matrix_decrease_hue();
  91. }
  92. }
  93. return true;
  94. }
  95. ```
  96. or `keymap.c`:
  97. ```c
  98. bool encoder_update_user(uint8_t index, bool clockwise) {
  99. if (index == 0) { /* First encoder */
  100. if (clockwise) {
  101. tap_code(KC_PGDN);
  102. } else {
  103. tap_code(KC_PGUP);
  104. }
  105. } else if (index == 1) { /* Second encoder */
  106. if (clockwise) {
  107. rgb_matrix_increase_hue();
  108. } else {
  109. rgb_matrix_decrease_hue();
  110. }
  111. }
  112. return false;
  113. }
  114. ```
  115. !> If you return `true` in the keymap level `_user` function, it will allow the keyboard/core level encoder code to run on top of your own. Returning `false` will override the keyboard level function, if setup correctly. This is generally the safest option to avoid confusion.
  116. ## Hardware
  117. The A an B lines of the encoders should be wired directly to the MCU, and the C/common lines should be wired to ground.
  118. ## Multiple Encoders
  119. Multiple encoders may share pins so long as each encoder has a distinct pair of pins when the following conditions are met:
  120. - using detent encoders
  121. - pads must be high at the detent stability point which is called 'default position' in QMK
  122. - no more than two encoders sharing a pin can be turned at the same time
  123. For example you can support two encoders using only 3 pins like this
  124. ```
  125. #define ENCODERS_PAD_A { B1, B1 }
  126. #define ENCODERS_PAD_B { B2, B3 }
  127. ```
  128. You could even support three encoders using only three pins (one per encoder) however in this configuration, rotating two encoders which share pins simultaneously will often generate incorrect output. For example:
  129. ```
  130. #define ENCODERS_PAD_A { B1, B1, B2 }
  131. #define ENCODERS_PAD_B { B2, B3, B3 }
  132. ```
  133. Here rotating Encoder 0 `B1 B2` and Encoder 1 `B1 B3` could be interpreted as rotating Encoder 2 `B2 B3` or `B3 B2` depending on the timing. This may still be a useful configuration depending on your use case