21 lines
252 B
C
21 lines
252 B
C
#ifndef GAERBOX_WIFI_H
|
|
#define GAERBOX_WIFI_H
|
|
|
|
#include "base.h"
|
|
|
|
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
|