mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
26 lines
561 B
C++
26 lines
561 B
C++
#pragma once
|
|
|
|
#include "Global.h"
|
|
#include "MqttClient.h"
|
|
|
|
void addPortMap(String TCP_UDP, String maddr, u16_t mport, String daddr, u16_t dport);
|
|
|
|
boolean isNetworkActive();
|
|
uint8_t getNumAPClients();
|
|
bool startAPMode();
|
|
#ifndef WIFI_ASYNC
|
|
void routerConnect();
|
|
boolean RouterFind(std::vector<String> jArray);
|
|
#else
|
|
void handleScanResults();
|
|
void WiFiUtilsItit();
|
|
void connectToNextNetwork();
|
|
void checkConnection();
|
|
void ScanAsync();
|
|
|
|
#endif
|
|
uint8_t RSSIquality();
|
|
//extern void wifiSignalInit();
|
|
#ifdef LIBRETINY
|
|
String httpGetString(HTTPClient &http);
|
|
#endif |