foxx1
(Foxx)
April 5, 2025, 9:57am
1
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?
foxx1
(Foxx)
April 6, 2025, 8:46am
2
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
foxx1
(Foxx)
April 7, 2025, 2:25pm
3
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.
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!
foxx1
(Foxx)
April 11, 2025, 8:27am
7
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.
foxx1
(Foxx)
April 11, 2025, 8:54am
8
@farmio
Do you have an idea why this happens?
farmio
(Matthias Alphart)
April 11, 2025, 9:21am
9
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.
foxx1
(Foxx)
April 11, 2025, 9:35am
10
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
foxx1
(Foxx)
April 11, 2025, 1:01pm
11
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.