diff --git a/homeassistant/components/hue/v2/binary_sensor.py b/homeassistant/components/hue/v2/binary_sensor.py index 55ec6a41549..47617b45af6 100644 --- a/homeassistant/components/hue/v2/binary_sensor.py +++ b/homeassistant/components/hue/v2/binary_sensor.py @@ -84,6 +84,9 @@ class HueMotionSensor(HueBinarySensorBase): @property def is_on(self) -> bool | None: """Return true if the binary sensor is on.""" + if not self.resource.enabled: + # Force None (unknown) if the sensor is set to disabled in Hue + return None return self.resource.motion.motion @property