mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-11 08:04:26 -08:00
5ccb5dfb37
Using Python CLI v1.3.29: ``` >meshtastic --set bluetooth.mode randomPin Connected to radio bluetooth.mode does not have an enum called randomPin, so you can not set it. Choices in sorted order are: FixedPin NoPin RandomPin LocalConfig and LocalModuleConfig do not have attribute bluetooth.mode. ```
34 lines
822 B
Plaintext
34 lines
822 B
Plaintext
---
|
|
id: bluetooth
|
|
title: Bluetooth Settings
|
|
sidebar_label: Bluetooth
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
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` |
|
|
|
|
|
|
|