aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_split_keyboard.md
diff options
context:
space:
mode:
authorDanny <nooges@users.noreply.github.com>2019-08-16 19:46:41 -0400
committerDrashna Jaelre <drashna@live.com>2019-08-16 16:46:41 -0700
commit36dd261d06e86ed90997486776f06b286a163cd8 (patch)
tree96bf3d7419b66eb736cf1d1522f60fad298d9d64 /docs/feature_split_keyboard.md
parent61b5914a80a7945952dd259cbe70d1e6752259c2 (diff)
downloadqmk_firmware-36dd261d06e86ed90997486776f06b286a163cd8.tar.gz
qmk_firmware-36dd261d06e86ed90997486776f06b286a163cd8.zip
Add support for different encoder pinout for right half of split keyboard (#6521)
* Add support for different encoder pinouts for split keyboard * Update documentation for new encoder pinout feature
Diffstat (limited to 'docs/feature_split_keyboard.md')
-rw-r--r--docs/feature_split_keyboard.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/feature_split_keyboard.md b/docs/feature_split_keyboard.md
index 4addb1bfd..60e0d278c 100644
--- a/docs/feature_split_keyboard.md
+++ b/docs/feature_split_keyboard.md
@@ -167,6 +167,13 @@ This allows you to specify a different set of pins for the matrix on the right s
167This allows you to specify a different set of direct pins for the right side. 167This allows you to specify a different set of direct pins for the right side.
168 168
169```c 169```c
170#define ENCODERS_PAD_A_RIGHT { encoder1a, encoder2a }
171#define ENCODERS_PAD_B_RIGHT { encoder1b, encoder2b }
172```
173
174This allows you to specify a different set of encoder pins for the right side.
175
176```c
170#define RGBLIGHT_SPLIT 177#define RGBLIGHT_SPLIT
171``` 178```
172 179