From 6cf747bc7bbd01936469ce782eb8b956674ad3f8 Mon Sep 17 00:00:00 2001
From: Oliver Crease <18347739+ocrease@users.noreply.github.com>
Date: Tue, 17 Dec 2024 22:50:35 +0000
Subject: [PATCH] Added missing enabled filter for timer binary sensor (though
 actually not required because timers are always programmable)

---
 custom_components/heatmiserneo/binary_sensor.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/custom_components/heatmiserneo/binary_sensor.py b/custom_components/heatmiserneo/binary_sensor.py
index 3c35776..660674c 100644
--- a/custom_components/heatmiserneo/binary_sensor.py
+++ b/custom_components/heatmiserneo/binary_sensor.py
@@ -32,6 +32,7 @@
     HeatmiserNeoEntityDescription,
     HeatmiserNeoHubEntity,
     HeatmiserNeoHubEntityDescription,
+    profile_sensor_enabled_by_default,
 )
 from .helpers import profile_level
 
@@ -187,6 +188,7 @@ class HeatmiserNeoHubBinarySensorEntityDescription(
             device.device_type in HEATMISER_TYPE_IDS_THERMOSTAT_NOT_HC
             and device.time_clock_mode
         ),
+        enabled_by_default_fn=profile_sensor_enabled_by_default,
     ),
 )