nodemcu-uploader
nodemcu-uploader copied to clipboard
Upload files to your esp8266 running nodeMcu
Trying to exec a local file on the target via 'exec' command seems to fail on Python 3.8.5. ``` $ nodemcu-uploader.py exec /tmp/tmp.yYUKAPNw0b/lfs-init.lua opening port /dev/ttyUSB0 with 115200 baud Execute...
Using the latest nodemcu-uploader 0.4.3 (serial 3.2.1) from github, Python 2.7.14. Trying to upload a Lua file containing UTF-8 characters, the nodemcu-uploader fails when option --verify is used. Without the...
After flashing the firmware, my module is listening on ttyUSB0 at a baud rate of 9600 baud (checked with serial terminal), so I'm trying to connect to that port using...
As NodeMCU recently moved `toHex` and `toBase64` functions to `encoder` module SHA1 file verification stopped working. This patch fixes that issue and should make SHA1 verification work with both old...
nodemcu-uploader fails on NodeMCU for ESP32 on my esp32 dev board. No idea why. The 'terminal' works normally, but the 'upload' dies this way: ``` $ python nodemcu-uploader.py -p /dev/ttyUSB0...
Running this: #nodemcu-uploader --baud 115200 exec dfplayer-test.lua Result in dfplayer-test.lua being executed char by char: ``` opening port /dev/ttyUSB0 with 115200 baud Execute dfplayer-test.lua > p >> = >> r...
Somekind of fallback to raw verification if crypto module is missing would be nice. Currently test and whatever throws an error when trying to do a sha1 verification and the...
When passing a file to upload as an absolute path instead of just a filename the filename on the ESP module is the full path on local host. ``` $...
```bash #!/bin/bash if hash nodemcu-uploader 2>/dev/null; then if [[ -z $1 ]]; then echo "Usage: [sudo] ./esp_tool.sh DEVICE" else port=$1 clear while IFS="" read -r -e -d $'\n' -p '$...