XTU J6 Doorbell

Hi community !
I found the price of the XTU J6 doorbell quite good on Amazon. And the comments seems very good.
The J5 version is said compatible with ONVIF through RSTP protocol.
However no clue on the J6. And, as I need a on-battery doorbell, J5 is not an option.

Anyone had success with linking a XTU J6 to home assistant ?

Did you found out if this doorbell works with HA.
If also have the XTU J6, but cannot find any info.

I haven’t found a way of getting the feed but I can get the notification events through to Home Assistant to trigger other events - Alexa for example or turn hall lights on etc. The camera feed i wasn’t that bothered about as it appears on my phone through their app and using it live will just kill the battery too quickly.

To get the notifications to home assistant I did the following.

In the companion app on my phone I went manage sensors and enabled last notifications. I then only enabled the cloudedge notifications to get through.

This then gives me another phone entity - in my case sensor.(phone model)_last_notification.

That has multiple attributes. the only one that changes each time the notification comes through is the post_time.

I then created a sensor in the file editor to monitor this attribute:

  - platform: template
    sensors:
      doorbell_testy:
        friendly_name: "Doorbell state change"
        value_template: "{{ states. sensor.le2123_last_notification.attributes.post_time }}"

And then based an automation on that sensor change:

alias: Doorbell Test2
description: ""
trigger:
  - platform: state
    entity_id:
      - sensor.doorbell_testy
condition: []
action:
  - service: notify.alexa_media_david_s_echo_spot
    data:
      data:
        type: tts
      message: Its the Door
  - service: notify.home_assistant
    data:
      message: Its the door
      title: Its the door
mode: single