From 9f7443ba97f8c6deb3d32e6a4d4117bc30fcfada Mon Sep 17 00:00:00 2001 From: Aaron Godfrey Date: Sun, 10 Feb 2019 07:41:29 -0800 Subject: [PATCH] Reverts 2105724. (#20915) This change broke functionality for existing users using hdmi grabbers. --- homeassistant/components/light/hyperion.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/components/light/hyperion.py b/homeassistant/components/light/hyperion.py index ebe209c745e..16be7d45825 100644 --- a/homeassistant/components/light/hyperion.py +++ b/homeassistant/components/light/hyperion.py @@ -177,6 +177,11 @@ class Hyperion(Light): def turn_off(self, **kwargs): """Disconnect all remotes.""" self.json_request({'command': 'clearall'}) + self.json_request({ + 'command': 'color', + 'priority': self._priority, + 'color': [0, 0, 0] + }) def update(self): """Get the lights status."""