Hello community!
I have an Aeotec Multisensor 6 configured on my HA, I want to use the motion detection and vibration sensor at the same time, but if I detect motion and then touch the multisensor (in purpose to generate vibrations) the state of the buglar sensor change from 8 to 3 so the indicator (binary sensor) shows no motion detected.
What I can do for have both detections?
This is my configuration:
binary_sensor:
- platform: template
sensors:
sensor_movimiento:
friendly_name: "Detección de Movimiento"
device_class: motion
value_template: "{{ is_state('sensor.aeotec_zw100_multisensor_6_burglar', '8') }}"
icon_template: '{% if is_state("sensor.aeotec_zw100_multisensor_6_burglar", "8") %}mdi:run-fast{% else %}mdi:human-male{% endif %}'
- platform: template
sensors:
sensor_vibracion:
friendly_name: "Vibraciones"
device_class: vibration
value_template: "{{ is_state('sensor.aeotec_zw100_multisensor_6_burglar', '3') }}"
Thanks!