initial commit

This commit is contained in:
Dominik Moritz Roth 2021-12-16 11:17:48 +01:00
commit 225162dfc7
4 changed files with 8 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Project mkWLED
A tiny script that flashes the (currently) newest firmware + wled onto a ESP32.

BIN
WLED_0.13.0-b6_ESP32.bin Normal file

Binary file not shown.

BIN
esp32_bootloader_v4.bin Normal file

Binary file not shown.

5
flash.sh Executable file
View File

@ -0,0 +1,5 @@
echo '[*] Flashing Bootloader...'
esptool.py write_flash 0x0 ./esp32_bootloader_v4.bin
echo '[*] Flashing WLED...'
esptool.py write_flash 0x10000 ./WLED_0.13.0-b6_ESP32.bin
echo '[*] Done.'