diff --git a/source/_integrations/knx.markdown b/source/_integrations/knx.markdown index b080ec15a63..ba7bc06226d 100644 --- a/source/_integrations/knx.markdown +++ b/source/_integrations/knx.markdown @@ -11,6 +11,7 @@ ha_category: - Notifications - Number - Scene + - Select - Sensor - Switch - Weather @@ -31,6 +32,7 @@ ha_platforms: - notify - number - scene + - select - sensor - switch - weather @@ -56,6 +58,7 @@ There is currently support for the following device types within Home Assistant: - [Notify](#notify) - [Number](#number) - [Scene](#scene) +- [Select](#select) - [Sensor](#sensor) - [Switch](#switch) - [Weather](#weather) @@ -1035,34 +1038,6 @@ name: type: string {% endconfiguration %} -## Scene - -The KNX scenes platform allows you to trigger [KNX](https://www.knx.org/) scenes. These entities are write-only. - -```yaml -# Example configuration.yaml entry -knx: - scene: - - name: "Romantic" - address: 8/8/8 - scene_number: 23 -``` - -{% configuration %} -address: - description: KNX group address for the scene. *DPT 17.001* - required: true - type: [string, list] -scene_number: - description: KNX scene number to be activated (range 1..64 ). - required: true - type: integer -name: - description: A name for this device used within Home Assistant. - required: false - type: string -{% endconfiguration %} - ## Number The KNX number platform allows to send generic numeric values to the KNX bus and update its state from received telegrams. It can optionally respond to read requests from the KNX bus with its current state. @@ -1126,6 +1101,119 @@ max: type: float {% endconfiguration %} +## Scene + +The KNX scenes platform allows you to trigger [KNX](https://www.knx.org/) scenes. These entities are write-only. + +```yaml +# Example configuration.yaml entry +knx: + scene: + - name: "Romantic" + address: 8/8/8 + scene_number: 23 +``` + +{% configuration %} +address: + description: KNX group address for the scene. *DPT 17.001* + required: true + type: [string, list] +scene_number: + description: KNX scene number to be activated (range 1..64 ). + required: true + type: integer +name: + description: A name for this device used within Home Assistant. + required: false + type: string +{% endconfiguration %} + +## Select + +The KNX select platform allows the user to define a list of values that can be selected via the frontend and can be used within conditions of automation. When a user selects a new item, the assigned generic raw payload is sent to the KNX bus. A received telegram updates the state of the select entity. It can optionally respond to read requests from the KNX bus with its current state. + +