Files
IoTManager/include/utils/WiFiUtils.h

23 lines
472 B
C
Raw Normal View History

#pragma once
#include "Global.h"
2022-02-11 00:22:59 +01:00
#include "MqttClient.h"
boolean isNetworkActive();
uint8_t getNumAPClients();
2025-02-24 20:16:00 +03:00
bool startAPMode();
2025-03-27 22:19:36 +03:00
#ifndef WIFI_ASYNC
void routerConnect();
boolean RouterFind(std::vector<String> jArray);
2025-02-15 00:20:44 +03:00
#else
void handleScanResults();
void WiFiUtilsItit();
void connectToNextNetwork();
void checkConnection();
void ScanAsync();
2025-02-24 20:16:00 +03:00
2025-02-15 00:20:44 +03:00
#endif
uint8_t RSSIquality();
2025-02-15 00:20:44 +03:00
//extern void wifiSignalInit();
2024-09-20 12:45:17 +03:00
#ifdef LIBRETINY
String httpGetString(HTTPClient &http);
#endif