“apiCode” & “Server_ip” are the values from EEPROM. Only thing I need is to check that my “nodeMCU” is connected. But when I am using this code in “void loop()” of 3 or 4 nodemcu it cause load on the server
void loop(){
if (Blynk.connected()) {
timer.run();
Blynk.run();
}
}
else {
Blynk.config(apiCode, Server_ip, 8080);
Blynk.connect();
}
}