Shutters and Scene with KNX

Hi there,

just ried to set up a scene to group and operate the shutters / covers.

If I activate the scene HA sends the following to the KNX bus:

“Langzeitbetrieb (long-term movement)” followed immedialtely by a “Kurzzeitbetrieb (short-time movement)”

The KNX Aktor immediately replys with a movement (Antriebsbewegung) and no movement status.

This happens so quick that there is no movement at the end.

@Farmio: Any idea with this?

YAML Code looks like this:

name: Rollo - AB
entities:
cover.rollo_1:
current_position: 0
device_class: shutter
friendly_name: Rollo 1
supported_features: 127
state: closed
icon: mdi:window-shutter
metadata:
cover.rollo_1:
entity_only: true

name: Rollo - AUF
entities:
cover.rollo_1:
current_position: 100
device_class: shutter
friendly_name: Rollo 1
supported_features: 127
state: open
icon: mdi:window-shutter
metadata:
cover.rollo_1:
entity_only: true

Just tried to set up a new scene with the cover and having the same effect.

HA always sends two actions. Long movement / Langzeitbetrieb followed by a Stop command.

Same problem here.

I had the same problem. My config for the covers was:

  - name: "EG AZ Rollo"
    move_long_address: "13/0/0"
    move_short_address: "13/1/0"
    position_address: "13/2/0"
    position_state_address: "13/3/0"

It seemed that when activating a scene, a move_long_address was activated but shortly after that, the move_short_address also.

I changed it now to:

  - name: "EG AZ Rollo"
    move_long_address: "13/0/0"
    stop_address: "13/1/0"
    position_address: "13/2/0"
    position_state_address: "13/3/0"

So the key was to set the stop_address instead of move_short_address. My actor (MDT JAL-0810M.02) uses the same address for short movement and stop.

Everything works as now before.

1 Like

That solved it for me too!
Herzlichen Dank! :wink:

Great this is a solutions that solves the issue for the UP / DOWN covers.

Just wondering why it was possible in previous relases to use the move_short_address to operate the covers via a scene. Seams that sth. has been changed in the background.

@farmio

Do you have an idea why this happens?

No. I never looked into HA scenes.

Have a look at How to help us help you - or How to ask a good question to learn how to format yaml output properly here.
Also, please avoid tagging people for attention.

Don’t wanted to be unpolite with tagging you but hought this might be an issue with the KNX integration and with all this topics in the forum you will never see it. Didn’t know this a a “no go”.

Thanks for the hint with the yaml output, updated the code with the right format.

1 Like

But what about covers with UP / DOWN / TILT?

- name: "Tuere 1"
    move_long_address: "10/1/0"
    move_short_address: "10/1/1"
    position_address: "10/1/5"
    position_state_address: "10/1/2"
    angle_address: "10/1/6"
    angle_state_address: "10/1/3"
    travelling_time_down: 60
    travelling_time_up: 61

As far as I understand the KNX documentation move-short is used for the tilt function.