diff --git a/hardware/esp8266com/esp8266/libraries/esp8266/examples/Blink/Blink.ino b/hardware/esp8266com/esp8266/libraries/esp8266/examples/Blink/Blink.ino index ffba83249..f80bb6ccd 100644 --- a/hardware/esp8266com/esp8266/libraries/esp8266/examples/Blink/Blink.ino +++ b/hardware/esp8266com/esp8266/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