ESP8266: Add reset note to webrepl init.

This commit is contained in:
Scott Shawcroft 2017-02-21 11:50:32 +01:00
parent 261a6ff0bb
commit 44e5d36086

View File

@ -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()