Hi, I have a problem with two RGB CCT lights an HUE Emulation. One is flashed with tasmota and one with esphome. I want to control them with Alexa over Hue Emulation. I added this in the configuration
emulated_hue:
listen_port: 80
host_ip: 192.168.1.1
off_maps_to_on_domains:
- script
- scene
expose_by_default: false
entities:
light.yeelight_light_ceiling20_ceiling_light:
name: "Yeelight Licht"
hidden: false
light.yeelight_light_ceiling20_ambient_light:
name: "Yeelight Farbe"
hidden: false
light.yeelight_light_ceiling20_night_light:
name: "Yeelight Nachtlicht"
hidden: false
light.tasmota_44237c37847e_light_light_1:
name: "Esstisch Licht"
hidden: false
light.esstisch:
name: "Esstisch Farbe"
hidden: false
now I have multiple devices, but no color selection for the CCT Light
the http://192.168.1.1/api/pi/lights returns:
{
"1": {
"state": {
"on": false,
"reachable": true,
"mode": "homeautomation",
"bri": 1
},
"name": "Yeelight Nachtlicht",
"uniqueid": "00:3d:6c:18:2e:97:18:f6-fe",
"manufacturername": "Home Assistant",
"swversion": "123",
"type": "Dimmable light",
"modelid": "HASS123"
},
"2": {
"state": {
"on": true,
"reachable": true,
"mode": "homeautomation",
"colormode": "ct",
"ct": 153.84616088867188,
"bri": 191
},
"name": "Yeelight Licht",
"uniqueid": "00:a4:db:f9:a0:a1:2e:25-e4",
"manufacturername": "Home Assistant",
"swversion": "123",
"type": "Color temperature light",
"modelid": "HASS312"
},
"3": {
"state": {
"on": false,
"reachable": true,
"mode": "homeautomation",
"bri": 1,
"colormode": "hs",
"hue": 0,
"sat": 0,
"effect": "none"
},
"name": "Yeelight Farbe",
"uniqueid": "00:ad:c3:86:33:32:0d:95-33",
"manufacturername": "Home Assistant",
"swversion": "123",
"type": "Color light",
"modelid": "HASS213"
},
"6": {
"state": {
"on": false,
"reachable": true,
"mode": "homeautomation",
"bri": 1,
"colormode": "hs",
"hue": 0,
"sat": 0,
"effect": "none"
},
"name": "Esstisch Farbe",
"uniqueid": "00:d3:c3:49:d3:ff:64:42-11",
"manufacturername": "Home Assistant",
"swversion": "123",
"type": "Color light",
"modelid": "HASS213"
},
"7": {
"state": {
"on": false,
"reachable": true,
"mode": "homeautomation",
"colormode": "ct",
"ct": 153,
"bri": 1
},
"name": "Esstisch Licht",
"uniqueid": "00:77:8b:a9:ee:f9:f3:b6-82",
"manufacturername": "Home Assistant",
"swversion": "123",
"type": "Color temperature light",
"modelid": "HASS312"
}
}
The type “Color temperature light” is correct, isn’t it ? I have also the message in the Alexa app for the 5 devices that the connected device is not responding (orig. German “Gerät reagiert nicht”)
If I change something in the Alexa app, it will change the state or switch the light part.
So where is there the bug, Alexa, hue emulation, configuration or is this still not possible ?