changed cyclic heat setpoint tx to every 15 minutes

This commit is contained in:
Dirk Alders 2023-12-24 08:41:33 +01:00
parent d93c9548c8
commit e21e272ceb

View File

@ -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):