Hello,
Sorry if this question was already asked before, but after few hours of trial/error and rtfm, I can’t make the Benext door sensor work. (https://www.benext.eu/static/manual/doorsensor.pdf)
HA seems to find it and there is a “benext door sensor” in the top bar, but opening/closing the switch doesn’t change its status.
Some post says that I need to use a template to create a virtual sensor that will reflect the changes, so I added this section:
binary_sensor:
- platform: template
sensors:
frame_front_door:
friendly_name: Front Door
value_template: “{{ states.sensor.benext_door_sensor_alarm_level.state == ‘255’ }}”
entity_id: sensor.benext_door_sensor_alarm_level
From the log of ozw, i see that the event is triggered:
2018-02-11 15:05:12 INFO (MainThread) [homeassistant.core] Bus:Handling <Event zwave.node_event[L]: entity_id=zwave.benext_door_sensor, node_id=3, basic_level=255>
2018-02-11 15:05:14 INFO (MainThread) [homeassistant.core] Bus:Handling <Event zwave.node_event[L]: entity_id=zwave.benext_door_sensor, node_id=3, basic_level=0>
If I go to the developper tools → states, I don’t see any changes (I’m looking for a ‘255’ value on the page) no matter I refresh the page.
On this page there are different names for this sensor, so it’s also confusing which Id I should use (moreover, I don’t find an entity id where I can see the 255 value)
binary_sensor.benext_door_sensor_sensor
zwave.benext_door_sensor
So it seems there are some missing link between the zwave event and the HA component/sensor?!
Any help would be greatly appreciated. I can provide any log if needed
Regards,