From 5bb201c7fc5f8a8232385d09ef4be6bc68cd7111 Mon Sep 17 00:00:00 2001 From: "Craig J. Ward" Date: Fri, 31 Mar 2017 01:53:11 -0500 Subject: [PATCH] use change light level to avoid variable ramp speeds (#6860) --- homeassistant/components/light/insteon_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/light/insteon_local.py b/homeassistant/components/light/insteon_local.py index 865458eae24..27f297a82f0 100644 --- a/homeassistant/components/light/insteon_local.py +++ b/homeassistant/components/light/insteon_local.py @@ -175,7 +175,7 @@ class InsteonLocalDimmerDevice(Light): if ATTR_BRIGHTNESS in kwargs: brightness = int(kwargs[ATTR_BRIGHTNESS]) / 255 * 100 - self.node.on(brightness) + self.node.change_level(brightness) def turn_off(self, **kwargs): """Turn device off."""