Bug-Fix: day_state
This commit is contained in:
parent
f0a05612bd
commit
ce737b42d8
@ -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)
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user