esphome-flasher/README.md

67 lines
2.5 KiB
Markdown
Raw Permalink Normal View History

2023-07-04 01:40:01 +02:00
# Deprecated
This project is deprecated in favour of browser based flashing with [ESP Web Tools](https://github.com/esphome/esp-web-tools). For example: https://web.esphome.io
2020-07-30 13:26:27 +02:00
# ESPHome-Flasher
2018-11-07 21:24:25 +01:00
2020-07-30 13:26:27 +02:00
ESPHome-Flasher is a utility app for the [ESPHome](https://esphome.io/)
framework and is designed to make flashing ESPs with ESPHome as simple as possible by:
2018-11-07 21:24:25 +01:00
* 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.
2020-07-30 13:26:27 +02:00
2018-11-07 21:24:25 +01:00
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
2020-07-30 13:26:27 +02:00
front end code, the GUI largely is based on the
2018-11-07 21:24:25 +01:00
[NodeMCU PyFlasher](https://github.com/marcelstoer/nodemcu-pyflasher)
project.
The flashing process is done using the [esptool](https://github.com/espressif/esptool)
library by espressif.
## Installation
2021-01-19 19:43:19 +01:00
It doesn't have to be installed, just double-click it and it'll start.
2020-07-30 13:26:27 +02:00
Check the [releases section](https://github.com/esphome/esphome-flasher/releases)
2018-11-07 21:24:25 +01:00
for downloads for your platform.
## Installation Using `pip`
If you want to install this application from `pip`:
- Install Python 3.x
2020-07-30 13:26:27 +02:00
- Install [wxPython 4.x](https://wxpython.org/) manually or run `pip3 install wxpython` (see also linux notes below)
2018-11-07 21:24:25 +01:00
- 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](https://wxpython.org/) 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)
2020-07-30 13:26:27 +02:00
## Linux Notes
Installing wxpython for linux can be a bit challenging (especially when you don't want to install from source).
You can use the following command to install a wxpython suitable with your OS:
```bash
# Go to https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ and select the correct OS type
# here, we assume ubuntu 18.03 bionic
pip3 install -U \
-f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04 \
wxPython
```
2018-11-07 21:24:25 +01:00
## License
[MIT](http://opensource.org/licenses/MIT) © Marcel Stör, Otto Winter