diff --git a/function/modules.py b/function/modules.py index cc7f71b..028640a 100644 --- a/function/modules.py +++ b/function/modules.py @@ -301,7 +301,7 @@ class motion_sensor_light(common_base): break 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) - 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: logger.info("%s: Motion detected - Switching on main light %s", device.topic, self.sw_device.topic) self.sw_method(True) diff --git a/smart_brain.py b/smart_brain.py index 8a88366..584991c 100644 --- a/smart_brain.py +++ b/smart_brain.py @@ -13,7 +13,7 @@ logger = logging.getLogger(config.APP_NAME) VERS_MAJOR = 1 VERS_MINOR = 2 -VERS_PATCH = 2 +VERS_PATCH = 3 INFO_TOPIC = "__info__" INFO_DATA = {