diff --git a/homeassistant/components/devolo_home_control/light.py b/homeassistant/components/devolo_home_control/light.py index c2f678425be..9c532be2dc2 100644 --- a/homeassistant/components/devolo_home_control/light.py +++ b/homeassistant/components/devolo_home_control/light.py @@ -77,4 +77,7 @@ class DevoloLightDeviceEntity(DevoloMultiLevelSwitchDeviceEntity, LightEntity): def turn_off(self, **kwargs) -> None: """Turn device off.""" - self._multi_level_switch_property.set(0) + if self._binary_switch_property is not None: + self._binary_switch_property.set(False) + else: + self._multi_level_switch_property.set(0)