diff options
author | ihatechoosingusernames <andrew.kevin.ellison@gmail.com> | 2022-06-29 11:39:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 18:39:37 +1000 |
commit | 1204cbb7ea53ff1e4e2aeb45e2cd0f371d30dcec (patch) | |
tree | 6175c8f3065cb87dd627a0fdc89dfd8a9b27bb9f | |
parent | dcdc7290e5e800689876c4d3ba393e926f966fbe (diff) | |
download | qmk_firmware-1204cbb7ea53ff1e4e2aeb45e2cd0f371d30dcec.tar.gz qmk_firmware-1204cbb7ea53ff1e4e2aeb45e2cd0f371d30dcec.zip |
Update feature_split_keyboard.md to add extra detail about left and right matrices. (#17492)
-rw-r--r-- | docs/feature_split_keyboard.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_split_keyboard.md b/docs/feature_split_keyboard.md index 4cd0768377..e53b3525cb 100644 --- a/docs/feature_split_keyboard.md +++ b/docs/feature_split_keyboard.md @@ -370,7 +370,7 @@ There are some settings that you may need to configure, based on how the hardwar #define MATRIX_COL_PINS_RIGHT { <col pins> } ``` -This allows you to specify a different set of pins for the matrix on the right side. This is useful if you have a board with differently-shaped halves that requires a different configuration (such as Keebio's Quefrency). +This allows you to specify a different set of pins for the matrix on the right side. This is useful if you have a board with differently-shaped halves that requires a different configuration (such as Keebio's Quefrency). The number of pins in the right and left matrices must be the same, if you have a board with a different number of rows or columns on one side, pad out the extra spaces with `NO_PIN` and make sure you add the unused rows or columns to your matrix. ```c #define DIRECT_PINS_RIGHT { { F1, F0, B0, C7 }, { F4, F5, F6, F7 } } |