UlrichMai / diyscip

DIY Supervision and Control Intxx PxxxSPA with an ESP8266
Other
6 stars 4 forks source link

Saltwater-spa-HomeKit-Boot-Loop #4

Open red-gee opened 3 years ago

red-gee commented 3 years ago

Yesterday I want to test the HomeKit option for my saltwater spa, but it doesn't worked for me. ESP is in bootloop, when I flash the other spa option ist works.

SchneHa commented 3 years ago

Try to feed the Watchdog Timer: Insert the following lines: After "void loop() {":

ESP.wdtFeed(); ESP.wdtEnable(0);

Maybe WDT must also be disabled in void setup() As last line: ESP.wdtDisable();

Try it out.