Can WIFI.CONNECT return success (or not)
Posted: Mon Aug 15, 2016 11:47 am
With Arduino I can wait util the ESP has connected to my network with something like
if(wifiConnected) {
digitalWrite(ledpin, LOW); //turn led on
}
else {...}
Is there a way to return a success/failure value from BASIC wifi.connect()?
if(wifiConnected) {
digitalWrite(ledpin, LOW); //turn led on
}
else {...}
Is there a way to return a success/failure value from BASIC wifi.connect()?