From ce737b42d8fd7d7d3ecadb0bdd69ae3b9e91f229 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 19 Feb 2023 20:32:51 +0100 Subject: [PATCH] Bug-Fix: day_state --- function/modules.py | 2 +- smart_brain.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = {