aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_encoders.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_encoders.md')
-rw-r--r--docs/feature_encoders.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/feature_encoders.md b/docs/feature_encoders.md
index bb2d538e7..cbf72914e 100644
--- a/docs/feature_encoders.md
+++ b/docs/feature_encoders.md
@@ -20,6 +20,15 @@ Additionally, the resolution can be specified in the same file (the default & su
20 20
21 #define ENCODER_RESOLUTION 4 21 #define ENCODER_RESOLUTION 4
22 22
23## Split Keyboards
24
25If you are using different pinouts for the encoders on each half of a split keyboard, you can define the pinout for the right half like this:
26
27```c
28#define ENCODERS_PAD_A_RIGHT { encoder1a, encoder2a }
29#define ENCODERS_PAD_B_RIGHT { encoder1b, encoder2b }
30```
31
23## Callbacks 32## Callbacks
24 33
25The callback functions can be inserted into your `<keyboard>.c`: 34The callback functions can be inserted into your `<keyboard>.c`: