Nodemcu board support added.

This commit is contained in:
klaute 2019-02-06 21:26:13 +01:00
parent 2826cbb983
commit 808cf6a40d

9
firmware/firmware.ino Normal file → Executable file
View file

@ -67,7 +67,12 @@ String localIP = "127.0.0.1";
//*************************************************************************// //*************************************************************************//
void setup() { void setup() {
#ifdef BOARD_NODEMCU
// on nodemcu v0.1 (aliexpress) the delay is required to prevent a endless reboot bug
delay(100);
#endif
// Erase WiFi Credentials (maybe this will work ...) // Erase WiFi Credentials (maybe this will work ...)
//WiFi.disconnect(true); //WiFi.disconnect(true);
//delay(2000); //delay(2000);
@ -268,4 +273,4 @@ void _loop() {
} }
//*************************************************************************// //*************************************************************************//