Skip to content

Commit 96b0972

Browse files
authored
Enable progress on ArduinoOTA upload
1 parent 92ce408 commit 96b0972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/espota.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
FLASH = 0
4242
SPIFFS = 100
4343
AUTH = 200
44-
PROGRESS = False
44+
PROGRESS = True
4545
# update_progress() : Displays or updates a console progress bar
4646
## Accepts a float between 0 and 1. Any int will be converted to a float.
4747
## A value under 0 represents a 'halt'.
@@ -305,7 +305,7 @@ def parser(unparsed_args):
305305
dest = "progress",
306306
help = "Show progress output. Does not work for ArduinoIDE",
307307
action = "store_true",
308-
default = False
308+
default = True
309309
)
310310
group.add_option("-t", "--timeout",
311311
dest = "timeout",

0 commit comments

Comments
 (0)