mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
132 lines
3.8 KiB
C++
132 lines
3.8 KiB
C++
#ifndef ESP8266React_h
|
|
#define ESP8266React_h
|
|
|
|
#include <Arduino.h>
|
|
#include <ArduinoJson.h>
|
|
#include <AsyncJson.h>
|
|
#include <AsyncMqttClient.h>
|
|
#include <ESPAsyncWebServer.h>
|
|
#include <FS.h>
|
|
#include <SecurityManager.h>
|
|
#include <SecuritySettingsService.h>
|
|
#include <StatefulService.h>
|
|
#include <Network.h>
|
|
|
|
class DummySettings {
|
|
public:
|
|
uint8_t tx_mode = 1;
|
|
uint8_t ems_bus_id = 0x0B;
|
|
bool syslog_enabled = false;
|
|
int8_t syslog_level = 3; // uuid::log::Level
|
|
uint32_t syslog_mark_interval = 0;
|
|
String syslog_host = "192.168.1.4";
|
|
uint16_t syslog_port = 514;
|
|
uint8_t master_thermostat = 0;
|
|
bool shower_timer = true;
|
|
bool shower_alert = false;
|
|
bool hide_led = false;
|
|
bool api_enabled = true;
|
|
|
|
// MQTT
|
|
uint16_t publish_time = 10; // seconds
|
|
uint8_t mqtt_qos = 0;
|
|
bool mqtt_retain = false;
|
|
bool enabled = true;
|
|
uint8_t dallas_format = 1;
|
|
bool nested_format = true;
|
|
uint8_t ha_climate_format = 1;
|
|
bool ha_enabled = true;
|
|
std::string base = "ems-esp";
|
|
|
|
String hostname = "ems-esp";
|
|
String jwtSecret = "ems-esp";
|
|
String ssid = "ems-esp";
|
|
String password = "ems-esp";
|
|
String localIP = "";
|
|
String gatewayIP = "";
|
|
String subnetMask = "";
|
|
String staticIPConfig = "";
|
|
String dnsIP1 = "";
|
|
String dnsIP2 = "";
|
|
uint8_t ethernet_profile = 0;
|
|
uint16_t publish_time_boiler = 10;
|
|
uint16_t publish_time_thermostat = 10;
|
|
uint16_t publish_time_solar = 10;
|
|
uint16_t publish_time_mixer = 10;
|
|
uint16_t publish_time_other = 10;
|
|
uint16_t publish_time_sensor = 10;
|
|
uint8_t bool_format = 1; // on off
|
|
|
|
#define FACTORY_MQTT_MAX_TOPIC_LENGTH 128
|
|
|
|
static void read(DummySettings & settings, JsonObject & root){};
|
|
static void read(DummySettings & settings){};
|
|
|
|
static StateUpdateResult update(JsonObject & root, DummySettings & settings) {
|
|
return StateUpdateResult::CHANGED;
|
|
}
|
|
};
|
|
|
|
class DummySettingsService : public StatefulService<DummySettings> {
|
|
public:
|
|
DummySettingsService(AsyncWebServer * server, FS * fs, SecurityManager * securityManager){};
|
|
|
|
void begin();
|
|
void loop();
|
|
};
|
|
|
|
#define NetworkSettings DummySettings
|
|
#define SecuritySettings DummySettings
|
|
#define MqttSettings DummySettings
|
|
|
|
class ESP8266React {
|
|
public:
|
|
ESP8266React(AsyncWebServer * server, FS * fs)
|
|
: _settings(server, fs, nullptr)
|
|
, _securitySettingsService(server, fs){};
|
|
|
|
void begin(){};
|
|
void loop(){};
|
|
|
|
SecurityManager * getSecurityManager() {
|
|
return &_securitySettingsService;
|
|
}
|
|
|
|
AsyncMqttClient * getMqttClient() {
|
|
return _mqttClient;
|
|
}
|
|
|
|
StatefulService<DummySettings> * getNetworkSettingsService() {
|
|
return &_settings;
|
|
}
|
|
|
|
StatefulService<DummySettings> * getSecuritySettingsService() {
|
|
return &_settings;
|
|
}
|
|
|
|
StatefulService<DummySettings> * getMqttSettingsService() {
|
|
return &_settings;
|
|
}
|
|
|
|
private:
|
|
DummySettingsService _settings;
|
|
SecuritySettingsService _securitySettingsService;
|
|
|
|
AsyncMqttClient * _mqttClient;
|
|
};
|
|
|
|
class EMSESPSettingsService {
|
|
public:
|
|
EMSESPSettingsService(AsyncWebServer * server, FS * fs, SecurityManager * securityManager);
|
|
void begin();
|
|
};
|
|
|
|
class JsonUtils {
|
|
public:
|
|
static void writeIP(JsonObject & root, const String & key, const String & ip) {
|
|
root[key] = ip;
|
|
}
|
|
};
|
|
|
|
#endif
|