diff options
author | Ryan <fauxpark@gmail.com> | 2022-11-09 06:03:31 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-08 19:03:31 +0000 |
commit | d810878d5e36e032ec99fb309b66caf3ea57e4ba (patch) | |
tree | c102744740f2beb805bfcea4ca86f1e41936dd11 /docs | |
parent | 9a0f347a095ad46c8e44eaed6925811da63aef6c (diff) |
Normalise output selection (Bluetooth) keycodes (#19004)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_bluetooth.md | 10 | ||||
-rw-r--r-- | docs/keycodes.md | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/docs/feature_bluetooth.md b/docs/feature_bluetooth.md index d4ed494053..f7ded84d86 100644 --- a/docs/feature_bluetooth.md +++ b/docs/feature_bluetooth.md @@ -39,8 +39,8 @@ BLUETOOTH_DRIVER = BluefruitLE # or RN42 This is used when multiple keyboard outputs can be selected. Currently this only allows for switching between USB and Bluetooth on keyboards that support both. -|Name |Description | -|----------|----------------------------------------------| -|`OUT_AUTO`|Automatically switch between USB and Bluetooth| -|`OUT_USB` |USB only | -|`OUT_BT` |Bluetooth only | +|Key |Aliases |Description | +|---------------------|---------|----------------------------------------------| +|`QK_OUTPUT_AUTO` |`OU_AUTO`|Automatically switch between USB and Bluetooth| +|`QK_OUTPUT_USB` |`OU_USB` |USB only | +|`QK_OUTPUT_BLUETOOTH`|`OU_BT` |Bluetooth only | diff --git a/docs/keycodes.md b/docs/keycodes.md index 6ec4e28978..79861ef3b8 100644 --- a/docs/keycodes.md +++ b/docs/keycodes.md @@ -292,11 +292,11 @@ See also: [Backlighting](feature_backlight.md) See also: [Bluetooth](feature_bluetooth.md) -|Key |Description | -|----------|----------------------------------------------| -|`OUT_AUTO`|Automatically switch between USB and Bluetooth| -|`OUT_USB` |USB only | -|`OUT_BT` |Bluetooth only | +|Key |Aliases |Description | +|---------------------|---------|----------------------------------------------| +|`QK_OUTPUT_AUTO` |`OU_AUTO`|Automatically switch between USB and Bluetooth| +|`QK_OUTPUT_USB` |`OU_USB` |USB only | +|`QK_OUTPUT_BLUETOOTH`|`OU_BT` |Bluetooth only | ## Caps Word :id=caps-word |