Explorar el Código

Bug-Fix: timer motion_sensor_light

tags/v1.0.0
Dirk Alders hace 1 año
padre
commit
b37d89fa30
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      function/modules.py

+ 2
- 1
function/modules.py Ver fichero

@@ -313,4 +313,5 @@ class motion_sensor_light(common_base):
313 313
 
314 314
     def cyclic_task(self, cyclic_task):
315 315
         min_value = 10 if self.motion_detected() else 0
316
-        self.set(self.KEY_TIMER, max(min_value, self[self.KEY_TIMER] - cyclic_task.cycle_time))
316
+        if self[self.KEY_TIMER] != 0:
317
+            self.set(self.KEY_TIMER, max(min_value, self[self.KEY_TIMER] - cyclic_task.cycle_time))

Loading…
Cancelar
Guardar