From 3e64d9d7ae2f3e8f134aefc46825fba4ad15b28e Mon Sep 17 00:00:00 2001 From: Vladislav Osmanov <7123463+osmanovv@users.noreply.github.com> Date: Sun, 11 Sep 2022 17:22:33 +0300 Subject: [PATCH] param is case sensitive Using Python CLI v1.3.29: ``` >meshtastic --set device.role client Connected to radio device.role does not have an enum called client, so you can not set it. Choices in sorted order are: Client ClientMute Router RouterClient LocalConfig and LocalModuleConfig do not have attribute device.role. ``` --- docs/settings/config/device.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/settings/config/device.mdx b/docs/settings/config/device.mdx index 8f26bd2b..676b6d60 100644 --- a/docs/settings/config/device.mdx +++ b/docs/settings/config/device.mdx @@ -18,10 +18,10 @@ Acceptable values: | Value | Description | | :-------: | :---------------------------------------------------------------------------------------: | -| `client` | Client (default) - App connected client. | -| `clientMute` | Client Mute - Same as a client except packets will not hop over this node, does not contribute to routing packets for mesh. | -| `router` | Router - Mesh packets will prefer to be routed over this node. This node will not be used by client apps. The wifi/ble radios and the oled screen will be put to sleep. | -| `routerClient` | Router Client - Mesh packets will prefer to be routed over this node. The Router Client can be used as both a Router and an app connected Client. | +| `Client` | Client (default) - App connected client. | +| `ClientMute` | Client Mute - Same as a client except packets will not hop over this node, does not contribute to routing packets for mesh. | +| `Router` | Router - Mesh packets will prefer to be routed over this node. This node will not be used by client apps. The wifi/ble radios and the oled screen will be put to sleep. | +| `RouterClient` | Router Client - Mesh packets will prefer to be routed over this node. The Router Client can be used as both a Router and an app connected Client. | ### Serial Console @@ -75,7 +75,7 @@ All device config options other than NTP Server are available on iOS, iPadOS and All device config options are available in the python CLI. Example commands are below: ```shell title="Set the role to client" -meshtastic --set device.role client +meshtastic --set device.role Client ``` ```shell title="Disable serial console" @@ -105,4 +105,4 @@ All device config options are available in the Web UI. ::: - \ No newline at end of file +