From 382b852f9aa799edc13ab262486923578e4d2f29 Mon Sep 17 00:00:00 2001 From: Andrea Donno Date: Thu, 8 Aug 2019 10:35:11 +0200 Subject: [PATCH] replace address with state_address (#10084) as per 0.97 release notes xKNX climate now uses : state_address instead of address --- source/_components/sensor.knx.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_components/sensor.knx.markdown b/source/_components/sensor.knx.markdown index dbd09b75cff..bce9e43f2b3 100644 --- a/source/_components/sensor.knx.markdown +++ b/source/_components/sensor.knx.markdown @@ -21,11 +21,11 @@ To use your KNX sensor in your installation, add the following lines to your `co sensor: - platform: knx name: Heating.Valve1 - address: '2/0/0' + state_address: '2/0/0' ``` {% configuration %} -address: +state_address: description: KNX group address of the sensor. required: true type: string @@ -79,10 +79,10 @@ type: sensor: - platform: knx name: Heating.Valve1 - address: '2/0/0' + state_address: '2/0/0' type: 'percent' - platform: knx name: Kitchen.Temperature - address: '6/2/1' + state_address: '6/2/1' type: 'temperature' ```