diff options
author | XScorpion2 <rcalt2vt@gmail.com> | 2021-08-19 12:39:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-19 18:39:15 +0100 |
commit | 9d1c98c891bb8e1e98dc618e0693a7efff23a22e (patch) | |
tree | b3ceeb02861a2e94c248c1e538e9b8db456ffa47 /docs/ja | |
parent | af3673a5b6985f4364210c3656f323624c2e1962 (diff) |
Added right vs left specific pin assignments for dip switch (#13074)
* Added right vs left specific pin assignments for dip switch
* Update feature_dip_switch.md
* Ran formatting tools
Diffstat (limited to 'docs/ja')
-rw-r--r-- | docs/ja/feature_dip_switch.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/ja/feature_dip_switch.md b/docs/ja/feature_dip_switch.md index a5436779f1..8d0eeafa5a 100644 --- a/docs/ja/feature_dip_switch.md +++ b/docs/ja/feature_dip_switch.md @@ -14,6 +14,8 @@ DIP スイッチは、以下を `rules.mk` に追加することでサポート ```c // Connects each switch in the dip switch to the GPIO pin of the MCU #define DIP_SWITCH_PINS { B14, A15, A10, B9 } +// For split keyboards, you can separately define the right side pins +#define DIP_SWITCH_PINS_RIGHT { ... } ``` あるいは |