trickeydan / hue2mqtt-python

Phillips Hue to MQTT Bridge - Python
MIT License
18 stars 17 forks source link

Groups do not update in a correct way for all_on and any_on #25

Open Christoph-87 opened 7 months ago

Christoph-87 commented 7 months ago

I have a group that consists of three lights (with ID 33, 43 and 44). The group is shown in mqtt under hue2mqtt/group/12.

The content is: {"id": 12, "name": "EG Terasse", "lights": [44, 43, 33], "sensors": [], "type": "Room", "state": {"all_on": false, "any_on": false}, "class": "Living room", "action": {"on": true, "alert": "none", "bri": 254, "ct": 217, "effect": "none", "hue": 9472, "sat": 78, "xy": [0.3592, 0.3647]}}

The state is wrong and for the lights it is shown in a correct way. At the moment I have light 44 on. Under hue2mqtt/light/c4.....04-01 it shows: {"id": 44, "name": "Garten Stra\u00dfe", "uniqueid": "c4:...-01", "state": {"on": true, "alert": "select", "bri": 223, "ct": 488, "effect": "none", "hue": 3328, "sat": 223, "xy": [0.5223, 0.3807], "reachable": true, "mode": "homeautomation"}, "manufacturername": "innr", "modelid": "RB 251 C", "productname": "Extended color light", "type": "Extended color light", "swversion": "2.03.00"}

I would have expected in state "all_on": false and "any_on": true.

Is there a way that I can provide you more useful information regarding this?