ソースを参照

changed cyclic heat setpoint tx to every 15 minutes

tags/v1.3.0
Dirk Alders 1年前
コミット
e21e272ceb
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      function/modules.py

+ 1
- 1
function/modules.py ファイルの表示

@@ -208,7 +208,7 @@ class heating_function(common_base):
208 208
         # cyclic task initialisation
209 209
         self.ct = task.periodic(1, self.cyclic_task)
210 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 212
         self.ct2.run()
213 213
 
214 214
     def timer_expired(self, device, data, key):

読み込み中…
キャンセル
保存