Just wanted to post this in case it’s helpful for someone. I got a bunch of Zooz Multi-sensors ZSE40 as they play well with HA, and have been reliable for me in the past.
I had an issue of figuring out how to get a motion sensor from it in HA since one wasn’t created by default. I used this bit of YAML to create motion sensors based on the value of the burglar
sensor. It turns out that a value of 8 indicates motion.
- platform: template
sensors:
master_bedroom_motion:
value_template: "{{ is_state('sensor.master_bedroom_burglar', '8') }}"
friendly_name: "Master Bedroom Motion"
device_class: motion
- platform: template
sensors:
playroom_motion:
value_template: "{{ is_state('sensor.playroom_burglar', '8') }}"
friendly_name: "Playroom Motion"
device_class: motion
- platform: template
sensors:
kids_room_motion:
value_template: "{{ is_state('sensor.kids_room_burglar', '8') }}"
friendly_name: "Kid's Room Motion"
device_class: motion
- platform: template
sensors:
foyer_motion:
value_template: "{{ is_state('sensor.foyer_burglar', '8') }}"
friendly_name: "Foyer Motion"
device_class: motion
Hope this helps!