From 3e87bb3ce21634f15d5e918eea31a30dd53b9803 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 21 Jun 2015 17:51:03 +0200 Subject: [PATCH] No need to disable the watchdog --- libraries/esp8266/examples/Blink/Blink.ino | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/esp8266/examples/Blink/Blink.ino b/libraries/esp8266/examples/Blink/Blink.ino index ffba83249..f80bb6ccd 100644 --- a/libraries/esp8266/examples/Blink/Blink.ino +++ b/libraries/esp8266/examples/Blink/Blink.ino @@ -10,8 +10,6 @@ const int ledPin = 1; // The blue LED on the ESP-01 module is connected void setup() { pinMode(ledPin, OUTPUT); // Initialize the ledPin as an output - ESP.wdtDisable(); // Disable the watchdog timer built into the ESP8266 - // otherwise the ESP8266 reboots during the "delay(1000);" } // the loop function runs over and over again forever