Files
EMS-ESP32/docs/Uploading-firmware.md
2020-01-09 23:04:27 +01:00

858 B

A pre-baked firmware for the common ESP8266 devices are available in the GitHub releases which you can upload yourself using the esptool bootloader.

via USB

  • Install ESPTool by running pip install esptool. You'll need Python installed.
  • Download the firmware from https://github.com/proddy/EMS-ESP/releases/latest. You can use wget for this.
  • esptool -p COM5 write_flash 0x00000 *.bin (use COM* for windows, /dev/tty* for Linux/OSX)

via OTA (Over The Air)

  • Download espota. Eg. wget https://raw.githubusercontent.com/esp8266/Arduino/master/tools/espota.py
  • Download the firmware from https://github.com/proddy/EMS-ESP/releases/latest. You can use wget for this.
  • python espota.py -i ems-esp -f *.bin