Multisensor 6 Motion and Vibration Sensor

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!

As you’ve probably discovered,
the “burglar” detection is only a single variable and has values
0=>nothing, 8=>motion, 3=> vibration.
So you can’t detect both motion and vibration at the same time.

However there are probably (complicated) ways to solve your problem by having the sensor clear only when the burglar detection goes to 0.

It seems - I am also busy with this problem - that you need to activate the binary sensor report instead of the basic report:
https://community.home-assistant.io/t/z-wave-polling-questions-answered/2394/21