mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
last octet of ip address and signal stength for WiFi status
This commit is contained in:
parent
cc8d1c77d5
commit
3fdac57325
|
|
@ -52,7 +52,7 @@ bool WifiTask::loop(System &system) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
system.connectedViaWifi(true);
|
system.connectedViaWifi(true);
|
||||||
_stateInfo = WiFi.localIP().toString();
|
_stateInfo = String("IP .") + String(WiFi.localIP()[3]) + String(" @ ") + String(WiFi.RSSI()) + String("dBm");
|
||||||
_state = Okay;
|
_state = Okay;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue