Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By nicorubbini
#44016 Hi everyone!
I'm working on a school project and I'd like to use an ESP8266-01.
The thing that is driving me crazy is that I'm unable to make my code work.
With the examples file included in the Arduino IDE the program runs flawlessly but when I make any adjustment to the code , or even write a new one, the Watchdog Always calls a reset.
Any solution?
User avatar
By picstart
#44078 Watch dog reset WDT is a hardware protection for errant software. It is expected to reset the micro processor. The watch dog is for protection against frozen (glitched) software it will time out unless reset by software.
If the software is running as expected then the coder will reset the watchdog before it times out. Upon reset after a WDT the software should check for the cause and safely resume as the coder dictates.