Example sketches for the new Arduino IDE for ESP8266

Moderator: igrr

User avatar
By techstudycell
#91906 Hi, you can add the following lines in the void setup()

Code: Select allpinMode(D1, OUTPUT);
digitalWrite(D1, LOW);


Here, I have used the D1 (GPIO-5) as OUTPUT, if you use another GPIO pin then replace it with that.
For the INPUT add
Code: Select allpinMode(D1, INPUT);


Some GPIOs have limitations, if you make them HIGH or LOW during the booting process, the BOOT will fail.
You can refer to the following picture for that.
Image

You can also refer to the following article
https://easyelectronicsproject.com/esp3 ... fi-manual/