Nodemcu board support added.
This commit is contained in:
parent
2826cbb983
commit
808cf6a40d
1 changed files with 7 additions and 2 deletions
5
firmware/firmware.ino
Normal file → Executable file
5
firmware/firmware.ino
Normal file → Executable file
|
@ -68,6 +68,11 @@ String localIP = "127.0.0.1";
|
|||
|
||||
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 ...)
|
||||
//WiFi.disconnect(true);
|
||||
//delay(2000);
|
||||
|
|
Loading…
Reference in a new issue