2023-03-30 01:28:31 +02:00
|
|
|
#ifndef WLAN_H
|
|
|
|
#define WLAN_H
|
|
|
|
|
2023-04-03 03:26:12 +02:00
|
|
|
#include <ESP8266WiFi.h>
|
|
|
|
#include <PubSubClient.h>
|
|
|
|
|
|
|
|
const int SLEEP_TIME = 900000000;
|
2023-03-30 01:28:31 +02:00
|
|
|
const int WIFI_TIMEOUT = 10000;
|
|
|
|
|
2023-04-03 03:26:12 +02:00
|
|
|
void initial_connection();
|
|
|
|
void connect_wlan(const int max_retries);
|
|
|
|
void connect_mqtt(PubSubClient &client, const char *device_id,
|
|
|
|
const char **topics, int num_topics);
|
|
|
|
void disconnect_mqtt(PubSubClient &client, const char **topics, int num_topics);
|
|
|
|
void mqtt_transfer(PubSubClient &client, const char *device_id,
|
|
|
|
const char **topics, float *data, int num_topics);
|
2023-03-30 02:10:49 +02:00
|
|
|
void enter_deep_sleep(bool wifi_timeout);
|
2023-03-30 01:28:31 +02:00
|
|
|
|
|
|
|
#endif /* WLAN_H */
|