From 2ae18c1903cfab4a2fee32f01eb9e53ac4c8d4ea Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 4 Aug 2024 12:22:57 -0700 Subject: [PATCH] Clarify documentation of position options slightly --- meshtastic/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 87d23cb..2469c77 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -1501,17 +1501,17 @@ def initParser(): group.add_argument( "--setalt", - help="Set device altitude in meters (allows use without GPS), and enable fixed position.", + 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.", ) group.add_argument( "--setlat", - help="Set device latitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7.", + 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.", ) group.add_argument( "--setlon", - help="Set device longitude (allows use without GPS), and enable fixed position. Accepts a decimal value or an integer premultiplied by 1e7.", + 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.", ) group.add_argument(