mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 22:22:16 +03:00
108 lines
3.1 KiB
C++
108 lines
3.1 KiB
C++
|
|
#include "Utils/WiFiUtils.h"
|
||
|
|
|
||
|
|
static const char* MODULE = "WiFi";
|
||
|
|
|
||
|
|
void startSTAMode() {
|
||
|
|
setLedStatus(LED_SLOW);
|
||
|
|
pm.info("STA Mode");
|
||
|
|
|
||
|
|
String ssid = jsonReadStr(configSetupJson, "routerssid");
|
||
|
|
String passwd = jsonReadStr(configSetupJson, "routerpass");
|
||
|
|
|
||
|
|
WiFi.mode(WIFI_STA);
|
||
|
|
if (ssid == "" && passwd == "") {
|
||
|
|
WiFi.begin();
|
||
|
|
} else {
|
||
|
|
if (WiFi.begin(ssid.c_str(), passwd.c_str()) == WL_CONNECT_FAILED) {
|
||
|
|
pm.error("failed on start");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
bool keepConnecting = true;
|
||
|
|
uint8_t tries = 20;
|
||
|
|
do {
|
||
|
|
sint8_t connRes = WiFi.waitForConnectResult(1000);
|
||
|
|
switch (connRes) {
|
||
|
|
case WL_NO_SSID_AVAIL: {
|
||
|
|
pm.error("No ssid available");
|
||
|
|
keepConnecting = false;
|
||
|
|
} break;
|
||
|
|
case WL_CONNECTED: {
|
||
|
|
String hostIpStr = WiFi.localIP().toString();
|
||
|
|
pm.info("http://" + hostIpStr);
|
||
|
|
jsonWriteStr(configSetupJson, "ip", hostIpStr);
|
||
|
|
keepConnecting = false;
|
||
|
|
} break;
|
||
|
|
case WL_CONNECT_FAILED: {
|
||
|
|
pm.error("Check credentials");
|
||
|
|
jsonWriteInt(configOptionJson, "pass_status", 1);
|
||
|
|
keepConnecting = false;
|
||
|
|
} break;
|
||
|
|
default:
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
} while (keepConnecting && tries--);
|
||
|
|
|
||
|
|
if (WiFi.status() == WL_CONNECTED) {
|
||
|
|
MQTT_init();
|
||
|
|
setLedStatus(LED_OFF);
|
||
|
|
} else {
|
||
|
|
startAPMode();
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
bool startAPMode() {
|
||
|
|
setLedStatus(LED_ON);
|
||
|
|
pm.info("AP Mode");
|
||
|
|
|
||
|
|
String ssid = jsonReadStr(configSetupJson, "apssid");
|
||
|
|
String passwd = jsonReadStr(configSetupJson, "appass");
|
||
|
|
|
||
|
|
WiFi.mode(WIFI_AP);
|
||
|
|
|
||
|
|
WiFi.softAP(ssid.c_str(), passwd.c_str());
|
||
|
|
String hostIpStr = WiFi.softAPIP().toString();
|
||
|
|
pm.info("Host IP: " + hostIpStr);
|
||
|
|
jsonWriteStr(configSetupJson, "ip", hostIpStr);
|
||
|
|
|
||
|
|
ts.add(
|
||
|
|
WIFI_SCAN, 10 * 1000,
|
||
|
|
[&](void*) {
|
||
|
|
String sta_ssid = jsonReadStr(configSetupJson, "routerssid");
|
||
|
|
pm.info("scanning for " + sta_ssid);
|
||
|
|
if (scanWiFi(sta_ssid)) {
|
||
|
|
ts.remove(WIFI_SCAN);
|
||
|
|
startSTAMode();
|
||
|
|
}
|
||
|
|
},
|
||
|
|
nullptr, true);
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
boolean scanWiFi(String ssid) {
|
||
|
|
bool res = false;
|
||
|
|
int8_t n = WiFi.scanComplete();
|
||
|
|
pm.info("scan result: " + String(n, DEC));
|
||
|
|
if (n == -2) {
|
||
|
|
// не было запущено, запускаем
|
||
|
|
pm.info("start scanning");
|
||
|
|
// async, show_hidden
|
||
|
|
WiFi.scanNetworks(true, false);
|
||
|
|
} else if (n == -1) {
|
||
|
|
// все еще выполняется
|
||
|
|
pm.info("scanning in progress");
|
||
|
|
} else if (n == 0) {
|
||
|
|
// не найдена ни одна сеть
|
||
|
|
pm.info("no networks found");
|
||
|
|
WiFi.scanNetworks(true, false);
|
||
|
|
} else if (n > 0) {
|
||
|
|
for (int8_t i = 0; i < n; i++) {
|
||
|
|
if (WiFi.SSID(i) == ssid) {
|
||
|
|
res = true;
|
||
|
|
}
|
||
|
|
pm.info((res ? "*" : "") + String(i, DEC) + ") " + WiFi.SSID(i));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return res;
|
||
|
|
}
|