LoRa_APRS_iGate/include/wifi_utils.h

17 lines
223 B
C
Raw Normal View History

2023-06-06 10:43:04 -04:00
#ifndef WIFI_UTILS_H_
#define WIFI_UTILS_H_
#include <Arduino.h>
2024-02-25 10:53:16 -03:00
2023-06-06 10:43:04 -04:00
namespace WIFI_Utils {
2024-01-02 22:12:10 -03:00
void checkWiFi();
2024-02-25 14:16:48 -03:00
void startAutoAP();
2024-01-02 22:12:10 -03:00
void startWiFi();
2024-10-06 23:23:22 -03:00
void checkAutoAPTimeout();
2024-01-02 22:12:10 -03:00
void setup();
2024-02-24 14:09:05 +01:00
2023-06-06 10:43:04 -04:00
}
#endif