Last active
December 13, 2025 16:20
-
-
Save DavesCodeMusings/0f039902dba9a5077a7dfb235529a5b4 to your computer and use it in GitHub Desktop.
Tasmota flash firmware on ESP32-C3 with esptool on Windoze 11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; This assumes Python and esptool module are installed and working. | |
| ; Download the factory image for a fresh install | |
| curl.exe --output tasmota32c3.factory.bin --url http://ota.tasmota.com/tasmota32/release/tasmota32c3.factory.bin | |
| ; Erase before flashing | |
| py -m esptool --port=COM3 erase_flash | |
| ; Flash the image to the first detected COM port at offset 0 | |
| py -m esptool write_flash 0x0 .\tasmota32c3.factory.bin | |
| ; After ESP32-C3 reboots, find and connect to the Tasmota WiFi SSID to configure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment