mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
|
|
#include "Global.h"
|
|
#include "MqttClient.h"
|
|
#include <vector>
|
|
// boolean isNetworkActive();
|
|
inline boolean isNetworkActive() {return WiFi.status() == WL_CONNECTED;};
|
|
void routerConnect();
|
|
bool startAPMode();
|
|
boolean RouterFind(std::vector<String> jArray);
|
|
uint8_t RSSIquality();
|
|
extern void wifiSignalInit();
|