HA Smoke alarm not triggering

Hello everyone,
I bought the EN14604 Decade Battery TUYA Connected Smoke Alarm through Tuya. It works with Wifi and RF433. When one smoke detector is alarmed, the others are also alarmed. Warning notifications also come via Tuya, but the homeassistant is not triggered in any way. I exposed the sensor to smoke for about 8 minutes, but still no homeassistant notification came. I made this automation so that it would call me via Twilio when the alarm started, but I could not manage to trigger it. This also goes for yale sync alarm. How do you think I can find a solution to this? Does anyone know the problem?

YAML:

alias: Duman algılama bildirimi
description: ""
triggers:
  - type: smoke
    device_id: 03c28f719c706dabcad0f7c9021d400c
    entity_id: a635e4a562fff4fa162d92e01c34bbbc
    domain: binary_sensor
    trigger: device
  - type: smoke
    device_id: d1ec03b66286402baddb79cfe8c0e76a
    entity_id: e0dc54ef98281469a0a273221b0b7196
    domain: binary_sensor
    trigger: device
  - type: smoke
    device_id: 3e34f8744311476849bc158fa8852d42
    entity_id: 64a6fac33ef5b1215bedcd0737546c81
    domain: binary_sensor
    trigger: device
conditions: []
actions:
  - action: notify.persistent_notification
    metadata: {}
    data:
      title: "UYARI: DUMAN ALGILANDI!"
      message: Evde bir duman tespit edildi. Lütfen kontrol edin.
  - action: notify.notify
    metadata: {}
    data:
      title: "UYARI: DUMAN ALGILANDI!"
      message: Evde bir duman tespit edildi. Lütfen kontrol edin.
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905466776595
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905358359985
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905309772638
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
mode: single

Does the notification itself work? Have you tried clicking on the 3 dots next to the notifcation command an executing the action? If this works, the problem must be in the “when” block.

If you click edit in YAML and paste the code as preformatted text (</> button ) it is a lot easier for people to see what your automation actually is containing.

Yes, the notification itself works. The problem is that the smoke detector never goes into the “smoke detector” position.

Sorry, I’m new to homeassistant.

alias: Duman algılama bildirimi
description: ""
triggers:
  - type: smoke
    device_id: 03c28f719c706dabcad0f7c9021d400c
    entity_id: a635e4a562fff4fa162d92e01c34bbbc
    domain: binary_sensor
    trigger: device
  - type: smoke
    device_id: d1ec03b66286402baddb79cfe8c0e76a
    entity_id: e0dc54ef98281469a0a273221b0b7196
    domain: binary_sensor
    trigger: device
  - type: smoke
    device_id: 3e34f8744311476849bc158fa8852d42
    entity_id: 64a6fac33ef5b1215bedcd0737546c81
    domain: binary_sensor
    trigger: device
conditions: []
actions:
  - action: notify.persistent_notification
    metadata: {}
    data:
      title: "UYARI: DUMAN ALGILANDI!"
      message: Evde bir duman tespit edildi. Lütfen kontrol edin.
  - action: notify.notify
    metadata: {}
    data:
      title: "UYARI: DUMAN ALGILANDI!"
      message: Evde bir duman tespit edildi. Lütfen kontrol edin.
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905466776595
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905358359985
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
  - action: notify.call_notifier_name
    metadata: {}
    data:
      target: 905309772638
      message: SMOKE DETECTORS ALARM! PLEASE CHECK. ALARM ALARM ALARM!
    enabled: true
mode: single

If your integration never registers the “smoke detected” event, it is an integration problem and not a problem with the automation. You should ask for support on the Github repository of the integration.

Yes, I opened the github page but there is no community page. I wrote to Tuya’s e-mail address. I hope they write an answer and help. However, I think many devices connected via tuya experience similar problems. I think it is the healthiest way to connect Zigbee devices via mqtt. I haven’t found a solution yet. I reinstalled the integration but it still didn’t work.