Load credentials and settings from config file

This commit is contained in:
2023-04-06 08:28:01 +02:00
parent 37e249a503
commit 92eeb0a638
8 changed files with 109 additions and 29 deletions

24
include/config.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef CONFIG_H_
#define CONFIG_H_
#include "FS.h"
#include "LittleFS.h"
struct Config {
const char *ssid;
const char *psk;
const char *mqtt_host;
const char *mqtt_user;
const char *mqtt_password;
int mqtt_port;
const char *topic;
const char *device_id;
long sleep_time;
int connection_attempts;
};
bool load_config_file(const char *file_path, struct Config &config);
long minutes_to_microseconds(int minutes);
#endif // CONFIG_H_

View File

@@ -4,17 +4,19 @@
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
const int SLEEP_TIME = 900000000;
const int WIFI_TIMEOUT = 10000;
void initial_connection();
void connect_wlan(const int max_retries);
void connect_mqtt(PubSubClient &client, const char *device_id,
void initial_connection(const char *ssid, const char *psk);
void connect_wlan(const char *ssid, const char *psk, const int max_retries,
const int sleep_time);
void connect_mqtt(PubSubClient &client, const char *mqtt_host,
const int mqtt_port, const char *mqtt_user,
const char *mqtt_password, const char *device_id,
const char *topic);
void disconnect_mqtt(PubSubClient &client, const char *topic);
size_t construct_json(float *data, char *buffer, int buffer_size);
void mqtt_transfer(PubSubClient &client, const char *device_id,
void mqtt_transfer(PubSubClient &client, const char *mqtt_host,
const int mqtt_port, const char *mqtt_user,
const char *mqtt_password, const char *device_id,
const char *topic, float *data);
void enter_deep_sleep(bool wifi_timeout);
void enter_deep_sleep(bool wifi_timeout, int sleep_time);
#endif /* WLAN_H */