From 4120685f589fa18553495ece143030922af39dae Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Wed, 24 Aug 2022 08:36:58 -0700 Subject: [PATCH] Add bluetooth config --- docs/settings/config/bluetooth.mdx | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docs/settings/config/bluetooth.mdx diff --git a/docs/settings/config/bluetooth.mdx b/docs/settings/config/bluetooth.mdx new file mode 100644 index 00000000..2491397a --- /dev/null +++ b/docs/settings/config/bluetooth.mdx @@ -0,0 +1,34 @@ +--- +id: bluetooth +title: Bluetooth Settings +sidebar_label: Bluetooth +--- + +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; +import PluginModule from '@site/docs/_blocks/_plugin_module.mdx'; + +The bluetooth config options are: Enabled, Pairing Mode and Fixed PIN Value. Bluetooth config uses an admin message sending a `Config.Bluetooth` protobuf. + +## Bluetooth Config Values + +### Enabled + +Enables bluetooth + +### Pairing Mode + +### Fixed PIN + +If your pairing mode is set to fixed PIN this is the value of that fixed 6 digit pin. Default value is 123456 + + + +| Setting | Acceptable Values | Default | +| :-----------------------: | :-----------------: | :-----: | +| bluetooth.enabled | `true`, `false` | `true` | +| bluetooth.mode | `randomPin`, `fixedPin`, `noPin` | `randomPin` | +| bluetooth.fixedPin | `integer` 6 Digits | `123456` | + + +