RavenSystem / esp-homekit-devices

Advanced firmware to add native Apple HomeKit and custom configurations, compatible with any SoC based on ESP32, ESP32-S, ESP32-C and ESP8266 series. (Shelly, Sonoff, Electrodragon, Tuya...)
Other
2.73k stars 360 forks source link

Ota Updates with Shelly #636

Closed sancheztineo closed 4 years ago

sancheztineo commented 4 years ago

I have two types of flashed devices, Sonoff and Shelly. With the Sonoffs I can update OTA update . With the Shelly doing the same, the web view option does not appear (Only appear reset homekit ID) , I can't OTA update.

What can be the motive?

RavenSystem commented 4 years ago

How did your flash your devices?

sancheztineo commented 4 years ago

I flash my devices with Python with cmd in windows 10. With this commands: "esptool.py --port COM3 --baud 115200 erase_flash" "esptool.py --port COM3 --baud 115200 write_flash -fs detect -fm dout 0x0 rboot.bin 0x1000 blank_config.bin 0x2000 otaboot.bin"

When I flash Sonoff devices all is OK (Sonoff mini Sononff Basic R1 and R3, and Sonoff TH). When I flash Shelly 2.5 and Shelly 1, devices install te last version of firmware, but only the first time. In the web Wiew don`t show the options OTA Updates.

RavenSystem commented 4 years ago

This is the problem -fs detect. You changed value. See right command from installation instructions in the Wiki.

sancheztineo commented 4 years ago

Thank you very much, José Antonio.