Skip to content

Commit 2ae18c1

Browse files
committed
Clarify documentation of position options slightly
1 parent d996965 commit 2ae18c1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

meshtastic/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1501,17 +1501,17 @@ def initParser():
15011501

15021502
group.add_argument(
15031503
"--setalt",
1504-
help="Set device altitude in meters (allows use without GPS), and enable fixed position.",
1504+
help="Set device altitude in meters (allows use without GPS), and enable fixed position. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
15051505
)
15061506

15071507
group.add_argument(
15081508
"--setlat",
1509-
help="Set device latitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7.",
1509+
help="Set device latitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
15101510
)
15111511

15121512
group.add_argument(
15131513
"--setlon",
1514-
help="Set device longitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7.",
1514+
help="Set device longitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7. When providing positions with `--setlat`, `--setlon`, and `--setalt`, missing values will be set to 0.",
15151515
)
15161516

15171517
group.add_argument(

0 commit comments

Comments
 (0)