He There!
I’ve updated to the latest Home assistant and somehow my automation is not working anymore.
I can’t see what is wrong in de zwave log and the hassio log file.
This is my automation:
- id: livingroom_lux_low_lights_on
alias: Turn on lights when lux is low and motion is detected
initial_state: 'on'
trigger:
- entity_id: binary_sensor.shenzhen_neo_electronics_co_ltd_battery_powered_pir_sensor_v2_sensor
from: 'Off'
platform: state
to: 'On'
condition:
- condition: and
conditions:
- after: '18:00:00'
before: 09:00:00
condition: time
- condition: state
entity_id: group.living_room
state: 'off'
- condition: state
entity_id: switch.front_door
state: 'off'
- condition: state
entity_id: switch.hallway
state: 'off'
- condition: state
entity_id: input_boolean.mode_holiday
state: 'off'
action:
- service: switch.turn_on
entity_id: group.living_room
- service: switch.turn_on
entity_id: switch.front_door
- service: switch.turn_on
entity_id: switch.hallway
And this is my hassio log file:
2020-01-09 08:46:38 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.shenzhen_neo_electronics_co_ltd_battery_powered_pir_sensor_v2_sourcenodeid is incorrectly being triggered for updates while it is disabled. This is a bug in the zwave integration.
2020-01-09 09:01:27 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/aiohttp/web_protocol.py", line 275, in data_received
messages, upgraded, tail = self._request_parser.feed_data(data)
File "aiohttp\_http_parser.pyx", line 523, in aiohttp._http_parser.HttpParser.feed_data
aiohttp.http_exceptions.BadStatusLine: invalid HTTP method
And my zwave log:
2020-01-09 09:16:37.074 Info, Node005, Received Alarm report: type=0, level=0, sensorSrcID=0, type:Burglar event:0, status=255
2020-01-09 09:16:37.074 Detail, Node005, Refreshed Value: old value=0, new value=0, type=byte
2020-01-09 09:16:37.074 Detail, Node005, Changes to this value are not verified
2020-01-09 09:16:37.074 Detail, Node005, Refreshed Value: old value=0, new value=0, type=byte
2020-01-09 09:16:37.074 Detail, Node005, Changes to this value are not verified
2020-01-09 09:16:37.074 Detail, Node005, Refreshed Value: old value=0, new value=0, type=byte
2020-01-09 09:16:37.074 Detail, Node005, Changes to this value are not verified
2020-01-09 09:16:37.074 Detail, Node005, Refreshed Value: old value=8, new value=0, type=byte
2020-01-09 09:16:37.074 Detail, Node005, Changes to this value are not verified
2020-01-09 09:16:37.074 Detail, Node005, Notification: ValueChanged
2020-01-09 09:16:37.089 Detail, Node005, Notification: ValueChanged
2020-01-09 09:16:37.100 Detail, Node005, Notification: ValueChanged
2020-01-09 09:16:37.107 Detail, Node005, Notification: ValueChanged
2020-01-09 09:16:37.114 Detail, Node005, Received: 0x01, 0x0a, 0x00, 0x04, 0x00, 0x05, 0x04, 0x30, 0x03, 0x00, 0x0c, 0xcf
2020-01-09 09:16:37.114 Detail,
2020-01-09 09:16:37.115 Info, Node005, Received SensorBinary report: Sensor:12 State=Off
2020-01-09 09:16:37.115 Detail, Node005, Refreshed Value: old value=true, new value=false, type=bool
2020-01-09 09:16:37.115 Detail, Node005, Changes to this value are not verified
2020-01-09 09:16:37.115 Detail, Node005, Notification: ValueChanged
Please help me out. Did i miss something in the release notes?