webrepl
webrepl copied to clipboard
WebREPL client and related tools for MicroPython
WebREPL doesn't prohibit a blank password. You may use such webrepl_cfg.py: ``` PASS = '' ``` And a command-line example is: webrepl_cli.py -p "" script.py 192.168.4.1:/
I've build https://github.com/metachris/micropython-ctl, a TypeScript library (and cli) for talking to MicroPython devices from websites/webapps, Node.js and Electron apps, VS code extensions (and more). I'm hoping it is useful and...
Document the use of the url #fragment to pass the address of the MicroPython board to connect to. add Edge as a browser option.
Parse the received URL string with urllib.parse.urlparse() to extract the hostname and port number (instead of splitting the URL to extract the hostname and port). parse_remote() previously split the host...
An error occured (Access Denied) while using Android devices to connect. But when using PC's, it's normal (login with same password on both devices). The configuration is: on ESP32: webrepl...
When uploading files, it can be convenient to have a directory structure and to be able to specify where a file should go. Signed-off-by: Igor Stoppa
Added support for Web Serial API, allowing direct access to the USB-Serial device from the Web Browser. Works on vanilla Google Chrome with Experimental Web Platform features enabled in chrome://flags....
webrepl_client.py is pep8online.com checked without errors/warnings. It runs under python v2 as well as v3. Very convenient for running Micropython remote shell on a mobile device with small display where...
This commit solves a little pet peeve of mine: If you're working on a device with a non- 192.168.4.1 IP address, you have to type it each time you load...
Hello. I was working on ESP-WROOM-32 and had flashed the ESP with micropython firmware. Now in the python temrinal of esp, when I run the command `import webrepl_setup`, it doesn't...