summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2017-02-21 11:50:32 +0100
committerScott Shawcroft <scott.shawcroft@gmail.com>2017-02-21 11:50:32 +0100
commit44e5d3608691870f9642c8ccb3bc6626acc00764 (patch)
tree02d93bf67942845de0a6e493cbabb24dfe0e648b
parent261a6ff0bba17708a9168d4d34166e673040a45b (diff)
ESP8266: Add reset note to webrepl init.
-rw-r--r--esp8266/modules/webrepl_setup.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/modules/webrepl_setup.py b/esp8266/modules/webrepl_setup.py
index d91600e6e..473067974 100644
--- a/esp8266/modules/webrepl_setup.py
+++ b/esp8266/modules/webrepl_setup.py
@@ -106,6 +106,7 @@ def main():
print("Changes will be activated after reboot")
resp = input_choice("Would you like to reboot now? (y/n) ", ("y", "n", ""))
if resp == "y":
+ print("Rebooting. Please manually reset if it hangs.")
machine.reset()
main()