Zooz ZSE40 Multi-sensor: What are all these extra sensors that are created?

I’ve got a bunch of Zooz ZSE40 multi-sensors around my house for primarily for motion and temperature sensors.

For the Zooz multisensors, they’ve got a “burglar” sensor, that I create motion sensors from using this:

- 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      

I’ve noticed that extra sensors are created but I’m not sure what they do. Can someone enlighten me?

  • Alarm Type
  • Alarm Leve
  • Source Node ID
  • Sensor (yes, it’s weirdly generic just called “Sensor”)
  • Appliance
  • Power Management

As far as I could tell, they didn’t do anything (no changes have ever been reported). I get the motion (burglar), humidity, luminance, battery, and temp reports.

Thanks, i figured as much. I’m going to disable all of those then to cleanup stuff