blob: 3060dd6b61c0a66ad783f7614292501275413f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#include <pgmspace.h>
#include "wifi.h"
#include <homekit/config.h>
#include <homekit/logging.h>
namespace homekit::wifi {
using namespace homekit;
using homekit::config::ConfigData;
const char NODE_ID[] = CONFIG_NODE_ID;
const char AP_SSID[] = CONFIG_WIFI_AP_SSID;
const char STA_SSID[] = CONFIG_WIFI_STA_SSID;
const char STA_PSK[] = CONFIG_WIFI_STA_PSK;
void getConfig(ConfigData &cfg, const char** ssid, const char** psk, const char** hostname) {
if (cfg.flags.wifi_configured) {
*ssid = cfg.wifi_ssid;
*psk = cfg.wifi_psk;
*hostname = cfg.node_id;
} else {
*ssid = STA_SSID;
*psk = STA_PSK;
*hostname = NODE_ID;
}
}
std::shared_ptr<std::list<ScanResult>> scan() {
if (WiFi.getMode() != WIFI_STA) {
PRINTLN("wifi::scan: switching mode to STA");
WiFi.mode(WIFI_STA);
}
std::shared_ptr<std::list<ScanResult>> results(new std::list<ScanResult>);
int count = WiFi.scanNetworks();
for (int i = 0; i < count; i++) {
results->push_back(ScanResult {
.rssi = WiFi.RSSI(i),
.ssid = WiFi.SSID(i)
});
}
WiFi.scanDelete();
return results;
}
}
|