You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
write_flash has been replaced with write-flash, erase_flash has been replaced with erase-flash, and -port has been replaced with --port and must not go immeidately after the executable or before the write-flash.
Copy file name to clipboardExpand all lines: docs/basics/install-binary.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,13 +23,13 @@ This installer is not yet available for ESPs with flash chips smaller than 4MB (
23
23
24
24
- First of all, please follow the steps to install esptool.py [here](https://github.com/espressif/esptool).
25
25
- Download the latest [release binary](https://github.com/Aircoookie/WLED/releases) file!
26
-
- Make sure only one ESP device/microcontroller is connected to your computer! Otherwise you could accidentally overwrite the wrong one. If you know the serial port, you can also add the `-port COM3` attribute after`write_flash`
26
+
- Make sure only one ESP device/microcontroller is connected to your computer! Otherwise you could accidentally overwrite the wrong one. If you know the serial port, you can also add the `--port COM3` attribute before`write_flash`
27
27
- Execute this command:
28
28
29
29
#### ESP8266
30
30
31
31
```bash
32
-
esptool.py write_flash 0x0 ./WLED_XXX.bin
32
+
esptool.py write-flash 0x0 ./WLED_XXX.bin
33
33
```
34
34
35
35
#### ESP32
@@ -38,21 +38,21 @@ Firstly, flash the version 4 bootloader file, which you can find [here](https://
38
38
This step only has to be done once, to update afterwards the bootloader does not have to be re-installed.
0 commit comments