mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 19:23:34 +00:00
Fix temperature range for KL120, the device can only do up to 5000 k (#174)
* Fix temperature range for KL120, the device can only do up to 5000 kelvin * use different temperature range for US and EU models of KL120
This commit is contained in:
parent
a475233464
commit
e82746da24
@ -7,7 +7,8 @@ TPLINK_KELVIN = {'LB130': (2500, 9000),
|
||||
'LB230': (2500, 9000),
|
||||
'KB130': (2500, 9000),
|
||||
'KL130': (2500, 9000),
|
||||
'KL120': (2700, 6500)}
|
||||
'KL120\(EU\)': (2700, 6500),
|
||||
'KL120\(US\)': (2700, 5000)}
|
||||
|
||||
|
||||
class SmartBulb(SmartDevice):
|
||||
|
Loading…
Reference in New Issue
Block a user