Merge pull request #205 from dahuafschmied/master

This commit is contained in:
Peter Buchegger 2022-06-30 23:52:27 +02:00 committed by GitHub
commit b4e563adeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@ bool WifiTask::loop(System &system) {
return false;
}
system.connectedViaWifi(true);
_stateInfo = WiFi.localIP().toString();
_stateInfo = String("IP .") + String(WiFi.localIP()[3]) + String(" @ ") + String(WiFi.RSSI()) + String("dBm");
_state = Okay;
return true;
}