webrepl
webrepl copied to clipboard
no install instructions
presumably someone has to do something on the MCU to set up the SSID/password, load something to accept connections, and run it... so telling us what that might be would be handy :-)
For anyone wondering how to set it up it's included in micropython images now this works on v1.22:
- Create a file called
webrepl_cfg.pyand inside put: (Remember to replacewith the actual password you want.)
PASS="<password>"
- To start webrepl:
import webrepl
webrepl.start()
- Browse to
http://<ip>:8266/in order to use the web client.