From e21e272ceb916e70f0f053244a6476707634ce63 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 24 Dec 2023 08:41:33 +0100 Subject: [PATCH] changed cyclic heat setpoint tx to every 15 minutes --- function/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/function/modules.py b/function/modules.py index ac5946d..41c9777 100644 --- a/function/modules.py +++ b/function/modules.py @@ -208,7 +208,7 @@ class heating_function(common_base): # cyclic task initialisation self.ct = task.periodic(1, self.cyclic_task) self.ct.run() - self.ct2 = task.periodic(5 * 60, self.cyclic_task_tx_setpoint) + self.ct2 = task.periodic(15 * 60, self.cyclic_task_tx_setpoint) self.ct2.run() def timer_expired(self, device, data, key):