From dd423f15f0971571380e7664d828a7d0d7779fd2 Mon Sep 17 00:00:00 2001 From: koenkk Date: Fri, 27 Oct 2023 19:49:32 +0200 Subject: [PATCH] fix(ignore): Fix Moes BHT-002-GCLZB `current_heating_setpoint` by 10. https://github.com/Koenkk/zigbee2mqtt/issues/19412 --- src/lib/legacy.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/legacy.ts b/src/lib/legacy.ts index 1f1149035cfbb..7b95805fbd936 100644 --- a/src/lib/legacy.ts +++ b/src/lib/legacy.ts @@ -6729,7 +6729,6 @@ const toZigbee2 = { if (['_TZE200_5toc8efa'].includes(meta.device.manufacturerName)) { await sendDataPointValue(entity, dataPoints.moesHeatingSetpoint, value * 10); } else { - if (value <= 5) value = Math.round(value*10); await sendDataPointValue(entity, dataPoints.moesHeatingSetpoint, value); } },