esp32/modules: Add support scripts for WebREPL.

WebREPL now works on the esp32 in the same way it does on esp8266.
This commit is contained in:
Damien George 2018-04-27 23:58:51 +10:00
parent c1d4352e65
commit 23e9c3bca7
4 changed files with 7 additions and 0 deletions

View File

@ -34,5 +34,9 @@ def setup():
with open("boot.py", "w") as f:
f.write("""\
# This file is executed on every boot (including wake-boot from deepsleep)
#import esp
#esp.osdebug(None)
#import webrepl
#webrepl.start()
""")
return vfs

View File

@ -0,0 +1 @@
../../esp8266/modules/webrepl.py

View File

@ -0,0 +1 @@
../../esp8266/modules/webrepl_setup.py

View File

@ -0,0 +1 @@
../../esp8266/modules/websocket_helper.py