Self-contained NodeMCU flasher with GUI based on esptool.py and wxPython.
NodeMCU PyFlasher doesn't have to be installed, just double-click it and it'll start. Check the releases section for downloads for your platform. For every release there's at least a .exe file for Windows. Starting from 3.0 there's also a .dmg for macOS.
Scan the list of open issues for bugs and pending features.
Note
This is my first Python project. If you have constructive feedback as for how to improve the code please do reach out to me.
In the unlikely event that you're stuck with this simple tool the best way to get help is to turn to the "Tools and IDE" subforum on esp8266.com.
All open-source development by the author is donationware. Show your love and support for open-source development by donating to the good cause through PayPal.
If you want to build this application yourself you need to:
python.org
).python -m venv venv
. venv/bin/activate
(. venv/Scripts/activate
if you are on Windows with Cygwin or Mingw)pip install -r requirements.txt
A note on Linux: As described on the downloads section of wxPython
, wheels for Linux are complicated and may require you to run something like this to install wxPython
correctly:
# Assuming you are running it on Ubuntu 18.04 LTS with GTK3
pip install -U \
-f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04 \
wxPython
This addresses an issue the NodeMCU community touched on several times in the past, most recently at #1500 (comment).
I stated that based on my experience doing NodeMCU user support it should be a lot simpler to flash NodeMCU for Windows users.
To conclude: this is not a comfortable situation for NodeMCU's largest user group.
For quite a while I planned to write a self-contained GUI tool which would use esptool.py in the background. It should primarily target Windows users but since I'm on Mac it should be cross-platform. Even though I had never used Python before I felt confident to pull this off.
MIT © Marcel Stör