From 421bb76e6d6a75d0a51ffeca748996829193f956 Mon Sep 17 00:00:00 2001 From: Martin Date: Sat, 23 Jan 2021 12:55:48 +0100 Subject: [PATCH] Update knx.markdown (#16283) Fix sync_state syntax example. * The unit for the sync_state is minutes and not seconds * The update regularly command is 'every' and not 'expire' --- source/_integrations/knx.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/knx.markdown b/source/_integrations/knx.markdown index d14e51de084..594d5d9c05a 100644 --- a/source/_integrations/knx.markdown +++ b/source/_integrations/knx.markdown @@ -876,7 +876,7 @@ knx: state_address: '2/0/0' ``` -In order to actively read the sensor data from the bus all 30 seconds you can add the following lines to your `configuration.yaml`: +In order to actively read the sensor data from the bus all 30 minutes you can add the following lines to your `configuration.yaml`: ```yaml # Example configuration.yaml entry @@ -884,7 +884,7 @@ knx: sensor: - name: Heating.Valve1 state_address: '2/0/0' - sync_state: expire 30 + sync_state: every 30 ``` {% configuration %}