Browse Source

changed cyclic heat setpoint tx to every 15 minutes

tags/v1.3.0
Dirk Alders 1 year ago
parent
commit
e21e272ceb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      function/modules.py

+ 1
- 1
function/modules.py View File

208
         # cyclic task initialisation
208
         # cyclic task initialisation
209
         self.ct = task.periodic(1, self.cyclic_task)
209
         self.ct = task.periodic(1, self.cyclic_task)
210
         self.ct.run()
210
         self.ct.run()
211
-        self.ct2 = task.periodic(5 * 60, self.cyclic_task_tx_setpoint)
211
+        self.ct2 = task.periodic(15 * 60, self.cyclic_task_tx_setpoint)
212
         self.ct2.run()
212
         self.ct2.run()
213
 
213
 
214
     def timer_expired(self, device, data, key):
214
     def timer_expired(self, device, data, key):

Loading…
Cancel
Save