12 lines
259 B
C
12 lines
259 B
C
|
#ifndef WLAN_H
|
||
|
#define WLAN_H
|
||
|
|
||
|
const int SLEEP_TIME = 480000000;
|
||
|
const int WIFI_TIMEOUT = 10000;
|
||
|
|
||
|
void wlan_connection();
|
||
|
void prometheus_connection(char *server, int port, char *fingerprint);
|
||
|
void enter_deep_sleep(const int start_time);
|
||
|
|
||
|
#endif /* WLAN_H */
|