Add kelvin range for KL130 (#156)

* Add kelvin range for KL130 (new color bulb)

* Add kelvin range for KL120

Unable to test this personally as I don't have this bulb.
This commit is contained in:
dieselrabbit 2019-01-26 12:12:22 -08:00 committed by Teemu R
parent f75e2cd9b7
commit df42f59ede

View File

@ -5,7 +5,9 @@ from typing import Any, Dict, Optional, Tuple
TPLINK_KELVIN = {'LB130': (2500, 9000),
'LB120': (2700, 6500),
'LB230': (2500, 9000),
'KB130': (2500, 9000)}
'KB130': (2500, 9000),
'KL130': (2500, 9000),
'KL120': (2700, 6500)}
class SmartBulb(SmartDevice):