update modules

This commit is contained in:
proddy
2024-05-26 16:06:18 +02:00
parent 8ffed9fab7
commit 20063d48ed
8 changed files with 65 additions and 26 deletions

View File

@@ -75,6 +75,7 @@ TemperatureSensor EMSESP::temperaturesensor_; // Temperature sensors
AnalogSensor EMSESP::analogsensor_; // Analog sensors
Shower EMSESP::shower_; // Shower logic
Preferences EMSESP::nvs_; // NV Storage
ModuleLibrary EMSESP::module_; // Module Library
// static/common variables
uint16_t EMSESP::watch_id_ = WATCH_ID_NONE; // for when log is TRACE. 0 means no trace set
@@ -1645,6 +1646,8 @@ void EMSESP::start() {
#endif
webServer.begin(); // start the web server
module_.setup(this); // setup the external library modules
}
// main loop calling all services