diff options
author | Ryan <fauxpark@gmail.com> | 2024-07-03 17:18:27 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 17:18:27 +1000 |
commit | bc0c69570b8a8b1d9a754a280053e49a825b24d7 (patch) | |
tree | 2c04582e424871f6b242bd5295aa06eefce007a6 /docs/features/split_keyboard.md | |
parent | 8471dcc5633a8654327acd30c359d054243541f6 (diff) |
Rename encoder pins defines (#24003)
Diffstat (limited to 'docs/features/split_keyboard.md')
-rw-r--r-- | docs/features/split_keyboard.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/features/split_keyboard.md b/docs/features/split_keyboard.md index 6efa1c2a35..49582c3946 100644 --- a/docs/features/split_keyboard.md +++ b/docs/features/split_keyboard.md @@ -417,8 +417,8 @@ This allows you to specify a different set of pins for the matrix on the right s This allows you to specify a different set of direct pins for the right side. ```c -#define ENCODERS_PAD_A_RIGHT { encoder1a, encoder2a } -#define ENCODERS_PAD_B_RIGHT { encoder1b, encoder2b } +#define ENCODER_A_PINS_RIGHT { encoder1a, encoder2a } +#define ENCODER_B_PINS_RIGHT { encoder1b, encoder2b } ``` This allows you to specify a different set of encoder pins for the right side. |