Skip to content

Instantly share code, notes, and snippets.

@jhofker
Created January 30, 2023 22:46
Show Gist options
  • Save jhofker/f0a5ab8014ec42c68da1d2e5ca0fa73b to your computer and use it in GitHub Desktop.
Save jhofker/f0a5ab8014ec42c68da1d2e5ca0fa73b to your computer and use it in GitHub Desktop.
Install WLED with esptool from the command line
# Download esptool: https://github.com/espressif/esptool/releases/download/v4.2.1/esptool-v4.2.1-win64.zip
# Download bootloader: https://github.com/Aircoookie/WLED/releases/download/v0.13.3/esp32_bootloader_v4.bin
# Download WLED: https://github.com/Aircoookie/WLED/releases
# Hold down the BOOT or non- "EN" button on your ESP32 at each step until you see "Detecting chip type ... ESP32"
.\esptool.exe -p COM5 erase_flash
.\esptool.exe -p COM5 write_flash 0x0 .\esp32_bootloader_v4.bin
.\esptool.exe -p COM5 write_flash 0x010000 .\WLED_0.14.0-b1_ESP32.bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment