Doorbell send "group on" and not ON/OFF

Hi! I have been scratching my head for some days regarding my issue.
I have a nexa doorbell that is automatically added as a
“[binary_sensor.0b1100000189b54a01040f70]”
State: Off

However, when i trigger the button it sends a “group on” that is not picked up in home assistant.
2019-03-18 20:11:35 DEBUG (Thread-2) [homeassistant.components.rfxtrx] Receive RFXCOM event from (Device_id: 189b54a_1 Class: LightingDevice Sub: 0, Pkt_id: 0b1100040189b54a01040f70)
2019-03-18 20:11:35 DEBUG (Thread-2) [homeassistant.components.rfxtrx] Device_id: 189b54a_1 device_update. Command: Group on
2019-03-18 20:11:35 DEBUG (Thread-2) [homeassistant.components.rfxtrx.binary_sensor] Binary sensor update (Device ID: 189b54a_1 Class: LightingDevice Sub: 0)
2019-03-18 20:11:35 DEBUG (Thread-2) [homeassistant.components.rfxtrx] Device_id: 189b54a_1 device_update. Command: Group on

How can i chang on/off to group on/off or trigger the “group on” in node red in order to trigger automations based on button pushed?

I had a similar issue. I’m not familiar with your doorbell but here is my config:

- platform: rfxtrx
  automatic_add: True
  devices:
    0716004500910560:
      name: doorbell
      data_type:
       - Sound
      fire_event: true

and my automation:

- alias: Doorbell Notification
  initial_state: true
  trigger:
    - platform: event
      event_type: signal_received
      event_data:
        entity_id: sensor.doorbell_sound
1 Like

Thank you for your answer!
I will look into this and try to understand the code. Im currently not using automation, only node red to manage things.