Simple GUI tool to flash ESPs over USB
Go to file
Otto Winter 3c996b5da5
Change baud rate for logs
2019-10-24 16:07:20 +02:00
.github/workflows Disable ubuntu 2019-10-24 15:47:18 +02:00
esphomeflasher Change baud rate for logs 2019-10-24 16:07:20 +02:00
.gitignore Initial commit 2018-11-07 21:24:25 +01:00
LICENSE Initial commit 2018-11-07 21:24:25 +01:00
README.md Initial commit 2018-11-07 21:24:25 +01:00
build-instructions.md Add build instructions 2019-06-09 16:14:52 +02:00
icon.icns Add build instructions 2019-06-09 16:14:52 +02:00
icon.ico Add build instructions 2019-06-09 16:14:52 +02:00
partitions.bin Initial commit 2018-11-07 21:24:25 +01:00
requirements_build.txt Add github actions 2019-10-24 15:17:36 +02:00
setup.py Updates 2019-10-24 15:18:02 +02:00

README.md

esphomeflasher

esphomeflasher is a utility app for the esphomelib framework and is designed to make flashing ESPs with esphomelib as simple as possible by:

  • Having pre-built binaries for most operating systems.
  • Hiding all non-essential options for flashing. All necessary options for flashing (bootloader, flash mode) are automatically extracted from the binary.

This project was originally intended to be a simple command-line tool, but then I decided that a GUI would be nice. As I don't like writing graphical front end code, the GUI largely is based on the NodeMCU PyFlasher project.

The flashing process is done using the esptool library by espressif.

Installation

Es doesn't have to be installed, just double-click it and it'll start. Check the releases section for downloads for your platform.

Installation Using pip

If you want to install this application from pip:

  • Install Python 3.x
  • Install wxPython 4.x manually or run pip3 install wxpython
  • Install this project using pip3 install esphomeflasher
  • Start the GUI using esphomeflasher. Alternatively, you can use the command line interface ( type esphomeflasher -h for info)

Build it yourself

If you want to build this application yourself you need to:

  • Install Python 3.x
  • Install wxPython 4.x manually or run pip3 install wxpython
  • Download this project and run pip3 install -e . in the project's root.
  • Start the GUI using esphomeflasher. Alternatively, you can use the command line interface ( type esphomeflasher -h for info)

License

MIT © Marcel Stör, Otto Winter