Skip to content

How to flash Glow Worm Luciferin firmware via esptool

Davide Perini edited this page Nov 7, 2023 · 2 revisions

If you don't want to use the Web Installer, you can use the tool you prefer, in this example we will show how to flash the firmware via esptool.

  1. Install Python.
  2. Install esptool with this command: pip install esptool.
  3. Download Glow Worm Luciferin firmware.
  4. Install firmware with this two commands:
  • esptool --chip auto --port COM5 erase_flash (this is optional, it erase your flash/settings)
  • esptool --chip auto --port COM5 --baud 115200 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 20m --flash_size detect 0x0 firmware_name_based_on_your_device.bin
Clone this wiki locally