Remove Hue transition time limit

This commit is contained in:
Paulus Schoutsen 2015-12-01 23:32:51 -08:00
parent 28bbf39155
commit 0555294afe

View File

@ -206,9 +206,7 @@ class HueLight(Light):
command = {'on': True}
if ATTR_TRANSITION in kwargs:
# Transition time is in 1/10th seconds and cannot exceed
# 900 seconds.
command['transitiontime'] = min(9000, kwargs[ATTR_TRANSITION] * 10)
command['transitiontime'] = kwargs[ATTR_TRANSITION] * 10
if ATTR_BRIGHTNESS in kwargs:
command['bri'] = kwargs[ATTR_BRIGHTNESS]