21 lines
251 B
C
21 lines
251 B
C
#ifndef GAERBOX_WIFI_H
|
|
#define GAERBOX_WIFI_H
|
|
|
|
#include <ctime>
|
|
|
|
void wifiSetup();
|
|
|
|
void wifiLoop();
|
|
|
|
void wifiConnect();
|
|
|
|
bool isTimeSet();
|
|
|
|
time_t getTime();
|
|
|
|
time_t correctTime(time_t value);
|
|
|
|
bool isOlderThan(time_t time, time_t seconds);
|
|
|
|
#endif
|