Parcourir la source

sunrise sunset improvements for motion sensor

tags/v1.0.0
Dirk Alders il y a 2 ans
Parent
révision
7d516a9016
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      function/rooms.py

+ 1
- 1
function/rooms.py Voir le fichier

@@ -78,7 +78,7 @@ class room_shelly_motion_sensor(room_shelly):
78 78
         cyclic_task.run()
79 79
 
80 80
     def set_motion_detected(self, device, key, data):
81
-        if now() < sunrise_time(60) or now() > sunset_time(-60):
81
+        if now() < sunrise_time(60) or now() > sunset_time(-60) or data is False:
82 82
             if device == self.motion_sensor_silvercrest_1:
83 83
                 self.motion_detected_1 = data
84 84
             elif device == self.motion_sensor_silvercrest_2:

Chargement…
Annuler
Enregistrer