From f7f888994d453e14209e6450155aa2866c15b29d Mon Sep 17 00:00:00 2001 From: Matthias Alphart Date: Sun, 11 May 2025 19:39:33 +0200 Subject: [PATCH] KNX Cover entity configuration from UI (#38319) --- source/_integrations/knx.markdown | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/source/_integrations/knx.markdown b/source/_integrations/knx.markdown index d67486d0bfd..4760196d843 100644 --- a/source/_integrations/knx.markdown +++ b/source/_integrations/knx.markdown @@ -1064,6 +1064,11 @@ Unlike most KNX devices, Home Assistant defines 0% as closed and 100% as fully o Home Assistant will, by default, `close` a cover by moving it in the `DOWN` direction in the KNX nomenclature, and `open` a cover by moving it in the `UP` direction. {% endnote %} +Cover entities can be created from the frontend in the KNX panel or via YAML. + + +{% details "Configuration of KNX cover entities via YAML" %} + To use your KNX covers in your installation, add the following lines to your top level [KNX Integration](/integrations/knx) configuration key in your {% term "`configuration.yaml`" %}: ```yaml @@ -1072,12 +1077,20 @@ knx: cover: - name: "Kitchen shutter" move_long_address: "3/0/0" - move_short_address: "3/0/1" stop_address: "3/0/4" position_address: "3/0/3" position_state_address: "3/0/2" travelling_time_down: 51 travelling_time_up: 61 + - name: "Bedroom blinds" + move_long_address: "3/1/1" + move_short_address: "3/1/4" + position_address: "3/1/3" + position_state_address: "3/1/2" + angle_address: "3/1/5" + angle_state_address: "3/1/6" + travelling_time_down: 40 + travelling_time_up: 40 ``` {% configuration %} @@ -1150,6 +1163,8 @@ entity_category: default: None {% endconfiguration %} +{% enddetails %} + ## Date The KNX date platform allows to send date values to the KNX bus and update its state from received telegrams. It can optionally respond to read requests from the KNX bus.