Bug-Fix: day_state

This commit is contained in:
Dirk Alders 2023-02-19 20:32:51 +01:00
parent f0a05612bd
commit ce737b42d8
2 changed files with 2 additions and 2 deletions

View File

@ -301,7 +301,7 @@ class motion_sensor_light(common_base):
break break
self.set(self.KEY_MOTION_SENSOR % sensor_index, data) self.set(self.KEY_MOTION_SENSOR % sensor_index, data)
# auto light on with state sunset -> time_offset_sunrise=60 (longer sunset) and time_offset_sunset=-60 (longer sunset) # auto light on with state sunset -> time_offset_sunrise=60 (longer sunset) and time_offset_sunset=-60 (longer sunset)
if day_state(None, None, 60, -60).get_state() == self.day_status.KEY_SUNSET: if day_state(None, None, 60, -60).get_state() == day_state.KEY_SUNSET:
if data is True: if data is True:
logger.info("%s: Motion detected - Switching on main light %s", device.topic, self.sw_device.topic) logger.info("%s: Motion detected - Switching on main light %s", device.topic, self.sw_device.topic)
self.sw_method(True) self.sw_method(True)

View File

@ -13,7 +13,7 @@ logger = logging.getLogger(config.APP_NAME)
VERS_MAJOR = 1 VERS_MAJOR = 1
VERS_MINOR = 2 VERS_MINOR = 2
VERS_PATCH = 2 VERS_PATCH = 3
INFO_TOPIC = "__info__" INFO_TOPIC = "__info__"
INFO_DATA = { INFO_DATA = {