Open/Closed for garage door reported multiple times

Hello guys, and thank you in advance for your replies.
I have the following issue with my garage door, every time I open it and I close it I get multiple push notifications from the Home app (3 times when opening, 3 times when closing). The control for the gate is set up as follows.: 2 relays, one for open one for close set as a cover.

This is my configuration:

configuration.yaml
cover:

  • platform: template
    covers:
    poarta:
    friendly_name: “Poarta”
    value_template: “{{ is_state(‘binary_sensor.senzor_poarta’, ‘off’) }}”
    open_cover:
    service: switch.turn_on
    entity_id: switch.gate_open
    close_cover:
    service: switch.turn_on
    entity_id: switch.gate_close

customize.yaml
cover.poarta:
device_class: garage
homebridge_cover_type: garage_door
homebridge_visible: true

groups.yaml
Poarta:
control: hidden
entities:
- cover.poarta
- sensor.gate_humidity
- sensor.gate_temp
- switch.gate_open
- switch.gate_close
- binary_sensor.senzor_poarta

As I see from the log book every time I open or close the gate I get 3 notification also, one for the cover one for the sensor and one for the group, maybe homebridge picks this notification somehow and that’s why it reports 3 times.

Is there maybe a way that I can group this 3 notifications into one?

Thanks