Hi,
Short: Group on/off switch in the phoscon app doesn’t work as expected, switching single device on/off in the exact same group works.
Setup: Conbee II, Gateway 2.28.1, Firmware 26780700)
Device: Moes Fingerbot (_TZ3210_j4pdtz9v)
- Fingerbot successfully added as a light in Phoscon App
- Added a group + added Fingerbot as the sole “light” in this group
- Problem: Toggling the group in between On/Off (3-bulb icon) does nothing
- Toggling the single device via “Lights” (Light control, single bulb icon) triggers the device as expected
For visualisation:
Checking the websocket events in parallel shows identical events for both toggling the group and the single device, but the actual result differs, because only the direct device on/off triggers the expected action.
// 3-bulb icon (group) action *doesn't* trigger the device
"13:16:44:330": {
"e": "changed",
"id": "21",
"r": "lights",
"state": {
"on": false,
"reachable": true
},
"t": "event",
"uniqueid": "a4:c1:38:b2:0b:f6:a6:9f-01"
}
// Single bulb icon in group triggers the action (identical entry)
"13:26:09:423": {
"e": "changed",
"id": "21",
"r": "lights",
"state": {
"on": false,
"reachable": true
},
"t": "event",
"uniqueid": "a4:c1:38:b2:0b:f6:a6:9f-01"
},
The output above filtered based on the group, unfiltered output has one more relevant entry for the group:
"13:29:36:945": {
"e": "changed",
"id": "20",
"r": "groups",
"state": {
"all_on": false,
"any_on": false
},
"t": "event"
},
It seems the device is supported fine, just the resulting action triggered by group on/off and single device on/off seem to differ in the background.
Any hints on how to further debug what the group action is doing differently than the single action?
Best regards
xGitter