Add real kasa KL430(UN) device dump (#192)

* Add real kasa KL430(UN) device dump

* Adjust hue&sat max values

* light strips, as bulbs, have only power for emeter

Co-authored-by: Teemu Rytilahti <tpr@iki.fi>
This commit is contained in:
Ivan Prodanov
2021-08-16 21:16:29 +03:00
committed by GitHub
parent 4e8a3185fb
commit 7c9d21af7a
3 changed files with 93 additions and 3 deletions

View File

@@ -150,9 +150,9 @@ BULB_SCHEMA = PLUG_SCHEMA.extend(
{
"brightness": All(int, Range(min=0, max=100)),
"color_temp": int,
"hue": All(int, Range(min=0, max=255)),
"hue": All(int, Range(min=0, max=360)),
"index": int,
"saturation": All(int, Range(min=0, max=255)),
"saturation": All(int, Range(min=0, max=100)),
}
],
}