From e1f566992dbc29aa9868fdaf74ce504c807260d5 Mon Sep 17 00:00:00 2001 From: cjswedes Date: Tue, 10 Dec 2024 09:21:26 -0600 Subject: [PATCH] Remove health check from zigbee thermostat This is not needed to keep device online, and so its being removed to gain the small memory/latency savings of having it disabled. Tested with a Sinope thermostat --- drivers/SmartThings/zigbee-thermostat/src/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/SmartThings/zigbee-thermostat/src/init.lua b/drivers/SmartThings/zigbee-thermostat/src/init.lua index 416f9e32a7..0a5e82350e 100644 --- a/drivers/SmartThings/zigbee-thermostat/src/init.lua +++ b/drivers/SmartThings/zigbee-thermostat/src/init.lua @@ -376,6 +376,7 @@ local zigbee_thermostat_driver = { require("resideo_korea"), require("aqara") }, + health_check = false, } defaults.register_for_default_handlers(zigbee_thermostat_driver, zigbee_thermostat_driver.supported_capabilities)