KNX Homeassistant sends stop immediately after receiving a position telegram

Hi, I hope this isn’t too much of a noob question.

I’ve just got my knx covers up and running with homeassistant (using an entities card to control them).

For my ABB actuator (which only sends the position status after reaching the end position), everything ist fine. Also my venetian blinds controlled by my MDT JAL 0180.02 actuator work fine.

The problem are the roller blinds attached to the same MDT actuator: As soon as the actuator reports an absolute position, homeassistant writes a stop telegram to the knx bus:
Here’s the ETS logs (1.1.2 being homeassistant, 1.1.41 the MDT actuator)

What am I doing wrong?

Thanks a lot!

Homeassistant stops roller blinds

1.1.2||3/3/21|OG.Anb-Bad-Fenster.R-Rolladen-Stop|6|GroupValueWrite|  1.017 Auslöser|$00 | trigger (0)|

1.1.41|JAL-0810.02 Jalousieaktor 8-fach, 8TE, 230VAC, 10A|3/3/23|OG.Anb-Bad-Fenster.R-Rolladen-Status aktuelle Position|6|GroupValueWrite|  5.001 Prozent (0..100%)|$AD | 68 %|

1.1.2||3/3/20|OG.Anb-Bad-Fenster.R-Rolladen-Rolladen Auf/Ab|6|GroupValueWrite|  1.008 Auf/Ab|$00 | Hoch|

everything finde with venetian blinds

1.1.41|JAL-0810.02 Jalousieaktor 8-fach, 8TE, 230VAC, 10A|3/3/34|OG.Anb-SO-Balkon-Links.J-Jalousie-Status Absolute Position|6|GroupValueWrite|  5.001 Prozent (0..100%)|$00 | 0 %|

1.1.41|JAL-0810.02 Jalousieaktor 8-fach, 8TE, 230VAC, 10A|3/3/34|OG.Anb-SO-Balkon-Links.J-Jalousie-
Status Absolute Position|6|GroupValueWrite|  5.001 Prozent (0..100%)|$12 | 7 %|

...

`1.1.41|JAL-0810.02 Jalousieaktor 8-fach, 8TE, 230VAC, 10A|3/3/34|OG.Anb-SO-Balkon-Links.J-Jalousie-Status Absolute Position|6|GroupValueWrite|  5.001 Prozent (0..100%)|$EB | 92 %|

1.1.2||3/3/30|OG.Anb-SO-Balkon-Links.J-Jalousie-Jalousie Auf/Ab|6|GroupValueWrite|  1.008 Auf/Ab|$00 | Hoch|

Can you show your HA configuration of these cover devices?

Sorry, i forgot about that, here it is:

covers attached to the ABB actuator:

cover:
  - platform: knx
    name: "EG-Einlieger-Alle"
    move_long_address: '3/0/0'
 
  - platform: knx
    name: "EG-Einlieger-Schlafzimmer-Ost"
    move_long_address: '3/2/10'
    move_short_address: '3/2/11'
    position_state_address: '3/2/13'

  - platform: knx
    name: "EG-Einlieger-Bad"
    move_long_address: '3/2/20'
    move_short_address: '3/2/21'
    position_state_address: '3/2/23'

  - platform: knx
    name: "EG-Einlieger-Wohnzimmer-Terrasse-Links"
    move_long_address: '3/2/30'
    move_short_address: '3/2/31'
    position_state_address: '3/2/33'

... and so on

the two covers that keep stopping (attached to the mdt actuator)

  - platform: knx
    name: "OG-Anbau-Schlafzimmer-Ost"
    move_long_address: '3/3/10'
    move_short_address: '3/3/11'
    position_state_address: '3/3/13'

  - platform: knx
    name: "OG-Anbau-Bad"
    move_long_address: '3/3/20'
    move_short_address: '3/3/21'
    position_state_address: '3/3/23'

and finally one of the venetian blinds that all work perfectly:

  - platform: knx
    name: "OG-Anbau-Wohnzimmer-Balkon-Links"
    move_long_address: '3/3/30'
    move_short_address: '3/3/31'
    position_address: '3/0/32'
    angle_address: '3/3/33'
    position_state_address: '3/3/34'
    angle_state_address: '3/3/35'

I’m currently running homeassistant 0.107.5 on a raspberry pi

Thank you

Sorry, I can’t help with your question but I have one regarding the Venetian blind in Lovelace. How do you write to the the “angle_address”? I can only get up, down and position to work, but get no data regarding angle, and can’t work out how to write to is using the entity “cover”. Thanks