Update KNX for xknx 0.17.0 (#16660)

This commit is contained in:
Matthias Alphart 2021-02-22 14:32:33 +01:00 committed by GitHub
parent ea63201adc
commit c197b06323
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -168,7 +168,9 @@ local_ip:
```yaml ```yaml
knx: knx:
event_filter: ["1/0/*", "6/2,3,4-6/*"] event_filter:
- "1/0/*"
- "6/2,3,4-6/*"
``` ```
{% configuration %} {% 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]"). - `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). - `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"). - `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. - `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. description: Override the maximum temperature.
required: false required: false
type: float 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 %} {% endconfiguration %}
## Cover ## Cover
@ -1237,7 +1244,7 @@ knx:
address_day_night: "7/0/8" address_day_night: "7/0/8"
address_air_pressure: "7/0/9" address_air_pressure: "7/0/9"
address_humidity: "7/0/10" address_humidity: "7/0/10"
expose_sensors: false create_sensors: false
sync_state: true 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* description: KNX group address for reading current brightness to north coordinate from KNX bus. *DPT 9.004*
required: false required: false
type: string 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: address_wind_speed:
description: KNX group address for reading current wind speed from KNX bus. *DPT 9.005* description: KNX group address for reading current wind speed from KNX bus. *DPT 9.005*
required: false required: false
@ -1295,8 +1306,8 @@ address_humidity:
description: KNX address for reading current humidity. *DPT 9.007* description: KNX address for reading current humidity. *DPT 9.007*
required: false required: false
type: string type: string
expose_sensors: create_sensors:
description: If true, exposes all sensor values as dedicated sensors to Home Assistant. description: If true, dedicated sensor entities are created for all configured properties.
required: false required: false
type: boolean type: boolean
default: false default: false