Smartwares RM174RF & RFXtrx

Hi,

since a couple of days I’ve connected a RFXtrx433E to HA and try to add 2 Smartwares RM174RF smoke detectors. When I push the button on the smoke detector for 12 seconds I see some sensors showing up in the dev-state with the Panic state. One smoke detector gives me 6 sensors and the other on gives me 5 sensors all different ID’s and the state don’t change to No Panic after test is completed.

I tried to pair the detectors with unique ID’s in the RFXmngr tool, but don’t know if that succeeded. I didn’t pair the smoke detectors as master/slave at the detectors itself.

Anyone any clue?

Anyone? :blush:

I have solved it with a timer and binary sensor.

Automation

# Rookmelders
- alias: rookmelder_keuken
  trigger:
  - platform: event
    event_type: signal_received
    event_data: {"entity_id": "sensor.rookmelder_keuken_sensor_status"}
  action:
    - service: timer.start
      data_template:
        entity_id: timer.rookmelder_keuken
        duration: '60'  
    - service: notify.notify
      data:
        message: "Rookmelder"
        title: "Keuken"

Configuration

# Rookmelder.
binary_sensor:
  - platform: template
    sensors:
      rookmelder_keuken:
        friendly_name: "Rookmelder Keuken"
        device_class: safety
        value_template: >-
          {{ is_state('timer.rookmelder_keuken',     'active') }}