From e7ccfda3b656ac7886b9af11afc3732115225e5f Mon Sep 17 00:00:00 2001 From: Carl Quirion Date: Mon, 16 Mar 2026 08:30:26 -0400 Subject: [PATCH 1/3] Fix for "Unknown device type SinopeThermostat" --- custom_components/hilo/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/hilo/const.py b/custom_components/hilo/const.py index 4b55fbba..0ca60fd8 100755 --- a/custom_components/hilo/const.py +++ b/custom_components/hilo/const.py @@ -94,5 +94,5 @@ "OutdoorWeatherStation", "Gateway", ] -CLIMATE_CLASSES = ["Thermostat", "FloorThermostat", "Thermostat24V"] +CLIMATE_CLASSES = ["Thermostat", "FloorThermostat", "Thermostat24V", "MysaThermostat" , "TCC24V", "SinopeThermostat", "SinopeFloorThermostat", "Sinope24V"] SWITCH_CLASSES = ["Outlet", "Ccr", "Cee", "SinopeWaterHeater"] From 0779c461096730ebf577c8fcd2bade07bca82aa4 Mon Sep 17 00:00:00 2001 From: Carl Quirion Date: Mon, 16 Mar 2026 12:00:27 -0400 Subject: [PATCH 2/3] fix lint --- custom_components/hilo/const.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/custom_components/hilo/const.py b/custom_components/hilo/const.py index 0ca60fd8..b966f2e7 100755 --- a/custom_components/hilo/const.py +++ b/custom_components/hilo/const.py @@ -94,5 +94,14 @@ "OutdoorWeatherStation", "Gateway", ] -CLIMATE_CLASSES = ["Thermostat", "FloorThermostat", "Thermostat24V", "MysaThermostat" , "TCC24V", "SinopeThermostat", "SinopeFloorThermostat", "Sinope24V"] +CLIMATE_CLASSES = [ + "Thermostat", + "FloorThermostat", + "Thermostat24V", + "MysaThermostat", + "TCC24V", + "SinopeThermostat", + "SinopeFloorThermostat", + "Sinope24V" +] SWITCH_CLASSES = ["Outlet", "Ccr", "Cee", "SinopeWaterHeater"] From 73eb22ce1f6db31e4dcafd9ebdc4ec6c44acde6e Mon Sep 17 00:00:00 2001 From: Carl Quirion Date: Mon, 16 Mar 2026 12:02:18 -0400 Subject: [PATCH 3/3] fix lint --- custom_components/hilo/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/hilo/const.py b/custom_components/hilo/const.py index b966f2e7..1c0dcd15 100755 --- a/custom_components/hilo/const.py +++ b/custom_components/hilo/const.py @@ -102,6 +102,6 @@ "TCC24V", "SinopeThermostat", "SinopeFloorThermostat", - "Sinope24V" + "Sinope24V", ] SWITCH_CLASSES = ["Outlet", "Ccr", "Cee", "SinopeWaterHeater"]