homeostasis/src/wlan.h

12 lines
271 B
C
Raw Normal View History

#ifndef WLAN_H
#define WLAN_H
const int SLEEP_TIME = 480000000;
const int WIFI_TIMEOUT = 10000;
void wlan_connection(int max_retries);
void prometheus_connection(char *server, int port, char *fingerprint);
void enter_deep_sleep(bool wifi_timeout);
#endif /* WLAN_H */