From 7829f6afca72e88d1ce1f4da305dbbfaa62241b5 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Sun, 20 Nov 2022 20:01:50 -0600 Subject: [PATCH] Args --- meshtastic/__main__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index ce26069..e31aa53 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -946,6 +946,12 @@ def initParser(): parser.add_argument( "--device-metadata", help="Get the device metadata from the node", action="store_true") + + parser.add_argument( + "--begin-edit", help="Tell the node to open a transaction to edit settings", action="store_true") + + parser.add_argument( + "--commit-edit", help="Tell the node to commit open settings transaction", action="store_true") parser.add_argument( "--factory-reset", help="Tell the destination node to install the default config", action="store_true")