webrepl icon indicating copy to clipboard operation
webrepl copied to clipboard

no install instructions

Open gitcnd opened this issue 2 years ago • 1 comments

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 :-)

gitcnd avatar Oct 26 '23 13:10 gitcnd

For anyone wondering how to set it up it's included in micropython images now this works on v1.22:

  1. Create a file called webrepl_cfg.py and inside put: (Remember to replace with the actual password you want.)
PASS="<password>"
  1. To start webrepl:
import webrepl
webrepl.start()
  1. Browse to http://<ip>:8266/ in order to use the web client.

verm avatar Dec 31 '23 19:12 verm