From 50b19712ac04ff32d2118c929a74be7431c2baa9 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Wed, 4 Mar 2020 15:51:50 +0100 Subject: [PATCH] Fix DS1624 with KNX compilation error Fix DS1624 with KNX compilation error (#7853) --- tasmota/xsns_59_ds1624.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xsns_59_ds1624.ino b/tasmota/xsns_59_ds1624.ino index be0bcf9e5..f3ffcd1f1 100644 --- a/tasmota/xsns_59_ds1624.ino +++ b/tasmota/xsns_59_ds1624.ino @@ -190,7 +190,7 @@ void DS1624Show(bool json) DomoticzSensor(DZ_TEMP, temperature); #endif // USE_DOMOTICZ #ifdef USE_KNX - KnxSensor(KNX_TEMPERATURE, temperature); + KnxSensor(KNX_TEMPERATURE, ds1624_sns[i].value); #endif // USE_KNX once = false; }