From 28e68e234bb02038eb9714737ab34b1931745c7b Mon Sep 17 00:00:00 2001 From: njloof Date: Mon, 7 Sep 2026 16:28:50 -0700 Subject: [PATCH] Add TH6250WF to UNMONITORED_DEVICES This 24V thermostat only opens/closes a relay and has no power sensing. Hilo reports power.value: None, which _map_power coerces to 0, making sensor._power show a false 0 instead of unavailable. Confirmed via the Hilo app showing no power reading for this device either. Fixes #451 --- pyhilo/const.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyhilo/const.py b/pyhilo/const.py index 48285ab..e36f074 100755 --- a/pyhilo/const.py +++ b/pyhilo/const.py @@ -283,6 +283,7 @@ "43080", "43094", "43100", + "TH6250WF", ] STATE_UNKNOWN: Final = "unknown"