mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -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
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -4,4 +4,4 @@ node_modules/
|
|||
build
|
||||
.vercel
|
||||
.DS_Store
|
||||
.env
|
||||
.env
|
||||
|
|
|
@ -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.
|
||||
|
||||
```shell title="Expected output"
|
||||
$ meshtastic --dest \!28979058 --set-owner "Im Remote"
|
||||
$ meshtastic --dest '!28979058' --set-owner "Im Remote"
|
||||
Connected to radio
|
||||
Setting device owner to Im Remote
|
||||
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:
|
||||
|
||||
```shell title="Expected output"
|
||||
|
|
Loading…
Reference in a new issue