Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion source/_integrations/knx.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -1421,19 +1421,31 @@ knx:
state_address: "9/0/2"
```

{% note %}
At least one of `address` or `switch_address` must be provided. If you set only `address`, Home Assistant also uses this address to switch the fan on and off by sending 0 to turn the fan off.
{% endnote %}

{% configuration %}
name:
description: A name for this device used within Home Assistant.
required: false
type: string
address:
description: KNX group address for setting the percentage or step of the fan. *DPT 5.001* or *DPT 5.010*
required: true
required: false
type: [string, list]
state_address:
description: KNX group address for retrieving the percentage or step of the fan. *DPT 5.001* or *DPT 5.010*
required: false
type: [string, list]
switch_address:
description: KNX group address for switching the fan on/off. *DPT 1*
required: false
type: [string, list]
switch_state_address:
description: KNX group address for retrieving the on/off state of the fan. *DPT 1*
required: false
type: [string, list]
oscillation_address:
description: KNX group address for switching the fan oscillation on or off. *DPT 1*
required: false
Expand Down