Blame

aa0b84 David Marsh 2026-05-01 00:28:18
1
# MeshCore CLI Examples
2
3
## Change PASSWD to your password
4
3. changes your serial node to new settings
5
4. connect to the node again and get status
6
5. sync clock
7
6. show neighbours
8
9
```
10
$ meshcli -s /dev/meshcore0 login "🦷 Quakers Hill Wold" PASSWD
11
```
12
## 2. Uses tempradio to change settings for 120 mins
13
14
`wmt8` means wait for a msg (reply) with a timeout (I'm not 100% sure about this)
15
16
```
17
$ meshcli -s /dev/meshcore0 cmd "🦷 Quakers Hill Wold" "tempradio 915.075,125,9,5,120" wmt8
18
INFO:meshcore:Serial Connection started
19
INFO:meshcore:Connected to 🦷 rdm cli 0 running on a v1.15.0-dee3e26 fw.
20
🦷 Quakers Hill Corb (D): OK - temp params for 120 mins
21
```
22
23
$ meshcli -s /dev/meshcore0 set radio 915.075,125,9,5
24
25
$ meshcli -s /dev/meshcore0 req_status "🦷 Quakers Hill Wold"
26
INFO:meshcore:Serial Connection started
27
INFO:meshcore:Connected to 🦷 rdm cli 0 running on a v1.15.0-dee3e26 fw.
28
{
29
"pubkey_pre": "2fd9c7bbc93d",
30
"bat": 4034,
31
"tx_queue_len": 0,
32
"noise_floor": -114,
33
"last_rssi": -28,
34
"nb_recv": 17184,
35
"nb_sent": 5826,
36
"airtime": 4060,
37
"uptime": 174402,
38
"sent_flood": 4147,
39
"sent_direct": 1679,
40
"recv_flood": 11514,
41
"recv_direct": 5669,
42
"full_evts": 0,
43
"last_snr": 11.5,
44
"direct_dups": 21,
45
"flood_dups": 7367,
46
"rx_airtime": 11335
47
}
48
49
$ meshcli -s /dev/meshcore0 cmd "🦷 Quakers Hill Wold" "clock sync" wmt8
50
INFO:meshcore:Serial Connection started
51
INFO:meshcore:Connected to 🦷 rdm cli 0 running on a v1.15.0-dee3e26 fw.
52
🦷 Quakers Hill Wold (D): ERR: clock cannot go backwards
53
54
$ meshcli -s /dev/meshcore0 req_neighbours "🦷 Quakers Hill Wold"
55
INFO:meshcore:Serial Connection started
56
INFO:meshcore:Connected to 🦷 rdm cli 0 running on a v1.15.0-dee3e26 fw.
57
Got 7 neighbours out of 7 from 🦷 Quakers Hill Wold:
58
[e2601d59] 🦷 Quakers Hill Co 46m ago (2796s), 2.25dB SNR
59
[2236b543] ✝️ Lapstone 1h ago (3716s), -7.0dB SNR
60
[62c6ba72] 👾 Quakers Hill 1h ago (4330s), 4.0dB SNR
61
[4d0385b9] 🦷 Acacia Gardens 8h ago (29247s), -4.0dB SNR
62
[64beefb0] 🐄 Hawkesbury Hts 12h ago (44051s), -15.0dB SNR
63
[4aaaaaa5] 🏴‍☠️Faulco 1d ago (91020s), -8.5dB SNR
64
[3cf07663] 🦷 QH Paterson 1d ago (99596s), -10.75dB SNR
65
```