blob: 3fe77cb79e592f9989c9595c64e01e88a5c73a76 (
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
|
#ifndef HOMEKIT_TEPMHUM_WIFI_H
#define HOMEKIT_TEPMHUM_WIFI_H
#include <ESP8266WiFi.h>
#include <list>
#include <memory>
#include <homekit/config.h>
namespace homekit::wifi {
using homekit::config::ConfigData;
struct ScanResult {
int rssi;
String ssid;
};
void getConfig(ConfigData& cfg, const char** ssid, const char** psk, const char** hostname);
std::shared_ptr<std::list<ScanResult>> scan();
inline uint32_t getIPAsInteger() {
if (!WiFi.isConnected())
return 0;
return WiFi.localIP().v4();
}
inline int8_t getRSSI() {
return WiFi.RSSI();
}
extern const char AP_SSID[];
extern const char STA_SSID[];
extern const char STA_PSK[];
extern const char NODE_ID[];
}
#endif //HOMEKIT_TEPMHUM_WIFI_H
|