Hi,
I am using this Yeelight lamp:
https://xiaomiplanets.com/yeelight-yltd001-a-yltd003-lampy-1/
(funny enough, the lamp is already on sale, but is not listed on the Yeelight website).
If I try to connect it to the Yeelight component, I can see that the component tries to initialize the bulb by sending the get_prop
command, but never recognizes the bulb after that.
I tried to query the bulb manually with some weird results:
[kleinhenz@localhost ~]$ telnet 192.168.178.151 55443
Trying 192.168.178.151...
Connected to 192.168.178.151.
Escape character is '^]'.
{"id": 32, "method": "get_prop", "params": ["power", "main_power", "bright", "ct", "rgb", "hue", "sat", "color_mode", "flowing", "bg_power", "bg_lmode", "bg_flowing", "bg_ct", "bg_bright", "bg_hue", "bg_sat", "bg_rgb", "nl_br", "active_mode"]}
{"id":32, "error":{"code":-1, "message":"client quota exceeded"}}
(I removed the config from HA before so there should be no queries from the HA instance on the bulb.)
Other Yeelight lamps respond as documented:
[kleinhenz@localhost ~]$ telnet 192.168.178.133 55443
Trying 192.168.178.133...
Connected to 192.168.178.133.
Escape character is '^]'.
{"id": 32, "method": "get_prop", "params": ["power", "main_power", "bright", "ct", "rgb", "hue", "sat", "color_mode", "flowing", "bg_power", "bg_lmode", "bg_flowing", "bg_ct", "bg_bright", "bg_hue", "bg_sat", "bg_rgb", "nl_br", "active_mode"]}
{"id":32,"result":["off","","100","2702","16754176","39","100","1","0","","","","","","","","","",""]}
This looks like the Screenbar lamp uses a different API or there is something else wrong.
Any ideas? Anyone elase looking at that lamp type?
– Michael