I am working on ESP8266 in Arduino IDE. I want to know how to Software RESET the ESP8266. Any sketch/example would be useful. Moreover, how to initialise WDT in ESP8266.
Kindly help!
I am working on ESP8266 in Arduino IDE. I want to know how to Software RESET the ESP8266. Any sketch/example would be useful. Moreover, how to initialise WDT in ESP8266. Kindly help! |
|||
Software reset in ESP8266 is achieved using as per WDT, the other answer has info on that, i.e. software WDT is cleared using |
|||
|
asked |
5 months ago |
viewed |
552 times |
active |
Get the weekly newsletter! In it, you'll get:
see an example newsletter
By subscribing, you agree to the privacy policy and terms of service.
Technology | Life / Arts | Culture / Recreation | Science | Other | ||||||
---|---|---|---|---|---|---|---|---|---|---|
ESP.reset()
– Jaromanda X Jul 22 '16 at 1:56while(1);
would make it reset. Or use the officialESP.reset();
function. – Majenko Jul 22 '16 at 9:46