Another xbee function to check if we have ip saved

This commit is contained in:
Sara Damiano
2019-05-13 18:01:40 -04:00
parent a5cada3bab
commit eeffd92674

View File

@@ -1079,6 +1079,11 @@ finish:
return intRes;
}
bool gotIPforSavedHost() {
if (savedHost != "" && savedIP != IPAddress(0,0,0,0)) return true;
else return false;
}
public:
Stream& stream;