mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-13 17:14:25 -08:00
fix/remove-inaccurate-note (#336)
* fix/remove-inaccurate-note: removed note stating that exclamation point preceding node ID must be escaped * Update .gitignore Co-authored-by: Andrew Moroz <andrew@cashortrade.org> Co-authored-by: Sacha Weatherstone <sachaw100@hotmail.com>
This commit is contained in:
parent
8f85193b6b
commit
176a3a5aee
|
@ -89,19 +89,12 @@ Connected to radio
|
||||||
Using the node ID from that list, send a message through the mesh telling that node to change its owner name.
|
Using the node ID from that list, send a message through the mesh telling that node to change its owner name.
|
||||||
|
|
||||||
```shell title="Expected output"
|
```shell title="Expected output"
|
||||||
$ meshtastic --dest \!28979058 --set-owner "Im Remote"
|
$ meshtastic --dest '!28979058' --set-owner "Im Remote"
|
||||||
Connected to radio
|
Connected to radio
|
||||||
Setting device owner to Im Remote
|
Setting device owner to Im Remote
|
||||||
INFO:root:Requesting configuration from remote node (this could take a while)
|
INFO:root:Requesting configuration from remote node (this could take a while)
|
||||||
```
|
```
|
||||||
|
|
||||||
:::note
|
|
||||||
You will need to escape the `!` using `\!` otherwise the command will fail.
|
|
||||||
:::
|
|
||||||
:::note
|
|
||||||
The above note needs clarification. Currently, you refer to other nodes with `!########`. No backslashes are used.
|
|
||||||
:::
|
|
||||||
|
|
||||||
And you can now confirm via the local node that the remote node has changed:
|
And you can now confirm via the local node that the remote node has changed:
|
||||||
|
|
||||||
```shell title="Expected output"
|
```shell title="Expected output"
|
||||||
|
|
Loading…
Reference in a new issue