From 5fceca38d9e39874fce05ce0116c8a2ec683f068 Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 27 May 2024 22:16:10 +0200 Subject: [PATCH] add module's loop to loop() --- src/emsesp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/emsesp.cpp b/src/emsesp.cpp index c5c6488fb..26ce9f667 100644 --- a/src/emsesp.cpp +++ b/src/emsesp.cpp @@ -1666,6 +1666,7 @@ void EMSESP::loop() { publish_all_loop(); // with HA messages in parts to avoid flooding the mqtt queue mqtt_.loop(); // sends out anything in the MQTT queue webSchedulerService.loop(); // handle any scheduled jobs + module_.loop(); // loop the external library modules // force a query on the EMS devices to fetch latest data at a set interval (1 min) scheduled_fetch_values();