From 0ed8158f6e6865f033ab12d27e9856d57794e2ec Mon Sep 17 00:00:00 2001 From: Danielhiversen Date: Wed, 4 Feb 2015 22:33:04 +0100 Subject: [PATCH] Added suport for Tellstick light. Assume dimable switch is a light --- homeassistant/components/light/tellstick.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/light/tellstick.py b/homeassistant/components/light/tellstick.py index c9eba19b992..8073f251ae2 100644 --- a/homeassistant/components/light/tellstick.py +++ b/homeassistant/components/light/tellstick.py @@ -92,3 +92,4 @@ class TellstickLight(ToggleDevice): last_sent_value = self.tellstick.last_sent_value() if not last_sent_value is None: self.brightness = last_sent_value + self.tellstick.dim(self.brightness)