Shelly: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Quelle) |
|||
| Zeile 12: | Zeile 12: | ||
==Write Tasmota Firmware== | ==Write Tasmota Firmware== | ||
*esptool.py --port /dev/cu.usbserial-1420 write_flash -fs 8m 0x00000 ./sonoff.bin | *esptool.py --port /dev/cu.usbserial-1420 write_flash -fs 8m 0x00000 ./sonoff.bin | ||
| − | == | + | ==Quellen== |
*https://gist.github.com/aschuma/0bad53dc8698e163361eeba389e557a3 | *https://gist.github.com/aschuma/0bad53dc8698e163361eeba389e557a3 | ||
| − | + | *https://docs.espressif.com/projects/esptool/en/latest/esp32/installation.html | |
[[Datei:shelly1.png]] | [[Datei:shelly1.png]] | ||
Version vom 2. April 2024, 12:27 Uhr
Shelly1 Tasmota Flashing
Prepare Python Env
- virtualenv py3 -p $(which python3)
- source py3/bin/activate
- pip install esptool
Download Firmware
Backup Shelly Firmware
- esptool.py --port /dev/cu.usbserial-1420 read_flash 0x00000 0x100000 shelly1_backup_01.bin
Erase Shelly Firmware
- esptool.py --port /dev/cu.usbserial-1420 erase_flash
Write Tasmota Firmware
- esptool.py --port /dev/cu.usbserial-1420 write_flash -fs 8m 0x00000 ./sonoff.bin



