From c197b063233b2980ed7ba3839fd9a6f6ed026cb7 Mon Sep 17 00:00:00 2001 From: Matthias Alphart Date: Mon, 22 Feb 2021 14:32:33 +0100 Subject: [PATCH] Update KNX for xknx 0.17.0 (#16660) --- source/_integrations/knx.markdown | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/source/_integrations/knx.markdown b/source/_integrations/knx.markdown index 81f888bb5c5..441a3f73527 100644 --- a/source/_integrations/knx.markdown +++ b/source/_integrations/knx.markdown @@ -168,7 +168,9 @@ local_ip: ```yaml knx: - event_filter: ["1/0/*", "6/2,3,4-6/*"] + event_filter: + - "1/0/*" + - "6/2,3,4-6/*" ``` {% configuration %} @@ -182,7 +184,7 @@ Every telegram that matches the filter with its destination field will be announ - `data` contains the raw payload data (eg. 1 or "[12, 55]"). - `destination` the KNX group address the telegram is sent to as string (eg. "1/2/3). -- `direction` the direction of the telegram as string ("Incoming" / "Outgoing"). Currently only incoming telegrams generate the event. +- `direction` the direction of the telegram as string ("Incoming" / "Outgoing"). - `source` the KNX indidividual address of the sender as string (eg. "1.2.3"). - `telegramtype` the APCI service of the telegram. "GroupValueWrite", "GroupValueRead" or "GroupValueResponse" generate a knx_event. @@ -626,6 +628,11 @@ max_temp: description: Override the maximum temperature. required: false type: float +create_temperature_sensors: + description: If true, dedicated sensor entities are created for current and target temperature. + required: false + type: boolean + default: false {% endconfiguration %} ## Cover @@ -1237,7 +1244,7 @@ knx: address_day_night: "7/0/8" address_air_pressure: "7/0/9" address_humidity: "7/0/10" - expose_sensors: false + create_sensors: false sync_state: true ``` @@ -1267,6 +1274,10 @@ address_brightness_north: description: KNX group address for reading current brightness to north coordinate from KNX bus. *DPT 9.004* required: false type: string +address_wind_bearing: + description: KNX group address for reading current wind bearing from KNX bus. *DPT 5.003* + required: false + type: string address_wind_speed: description: KNX group address for reading current wind speed from KNX bus. *DPT 9.005* required: false @@ -1295,8 +1306,8 @@ address_humidity: description: KNX address for reading current humidity. *DPT 9.007* required: false type: string -expose_sensors: - description: If true, exposes all sensor values as dedicated sensors to Home Assistant. +create_sensors: + description: If true, dedicated sensor entities are created for all configured properties. required: false type: boolean default: false