исправление вывода лога в режиме AP

This commit is contained in:
DmitriyTychina
2023-09-20 13:02:27 +03:00
parent d4bdcc13ff
commit fe9789fc52
5 changed files with 22 additions and 11 deletions

View File

@@ -115,9 +115,13 @@ boolean RouterFind(String ssid) {
return res;
}
// boolean isNetworkActive() {
// return WiFi.status() == WL_CONNECTED;
// }
boolean isNetworkActive() {
return WiFi.status() == WL_CONNECTED;
}
uint8_t getNumAPClients() {
return WiFi.softAPgetStationNum();
}
uint8_t RSSIquality() {
uint8_t res = 0;