Hi all,
First of all: I am quite new to Home Assistant and do not have particular IT skills. I use HA mostly with UI.
Before I puchased the Home Assistant Blue, I used the Lidl (Silvercrest) hub in combination with 10 Lidl zigbee lights, 3 Lidl zigbee power sockets and a lidl zigbee remote control.
Because I wanted to integrate this in Home Assistant I bought a Conbee II stick and added all the lights and power sockets to Home Assistant via ZHA. Works perfectly! Now there is the remote control: Lidl Livarno Lux Remote Control Dimmer HG06323 Zigbee compatibility It connected via ZHA to HA in a second. So I was planning to use an automation to control the lights. But the only trigger options for the remote were: ‘Device offline’ or ‘Battery level changed’. No ‘On’ or ‘Off’.
I used ‘Developer tools/events/listen to events’ and pushed the buttons one by one: This is the result, Event 0 is off, 1 is on, 2 is dim up, 3 is dim down:
Gebeurtenis 3 uitgevoerd 20:03:
{
“event_type”: “zha_event”,
“data”: {
“device_ieee”: “bc:33:ac:xx:xx:xx:xx:xx”,
“unique_id”: “bc:33:ac:xx:xx:xx:xx:xx:1:0x0008”,
“device_id”: “2bf2e7b7e06d705c028a20xxxxxxxxxx”,
“endpoint_id”: 1,
“cluster_id”: 8,
“command”: “step”,
“args”: [
1,
51,
10
]
},
“origin”: “LOCAL”,
“time_fired”: “2021-12-09T19:03:27.707883+00:00”,
“context”: {
“id”: “b39b14e74019024af0625axxxxxxxxxx”,
“parent_id”: null,
“user_id”: null
}
}
Gebeurtenis 2 uitgevoerd 20:03:
{
“event_type”: “zha_event”,
“data”: {
“device_ieee”: “bc:33:ac:xx:xx:xx:xx:xx”,
“unique_id”: “bc:33:ac:xx:xx:xx:xx:xx:1:0x0008”,
“device_id”: “2bf2e7b7e06d705c028a20xxxxxxxxxx”,
“endpoint_id”: 1,
“cluster_id”: 8,
“command”: “step”,
“args”: [
0,
51,
10
]
},
“origin”: “LOCAL”,
“time_fired”: “2021-12-09T19:03:24.841735+00:00”,
“context”: {
“id”: “8b30b069853dce9626bd57xxxxxxxxxx”,
“parent_id”: null,
“user_id”: null
}
}
Gebeurtenis 1 uitgevoerd 20:03:
{
“event_type”: “zha_event”,
“data”: {
“device_ieee”: “bc:33:ac:xx:xx:xx:xx:xx”,
“unique_id”: “bc:33:ac:xx:xx:xx:xx:xx:1:0x0006”,
“device_id”: “2bf2e7b7e06d705c028a20xxxxxxxxxx”,
“endpoint_id”: 1,
“cluster_id”: 6,
“command”: “on”,
“args”:
},
“origin”: “LOCAL”,
“time_fired”: “2021-12-09T19:03:21.678566+00:00”,
“context”: {
“id”: “5fc093397e14010bba98ddxxxxxxxxxx”,
“parent_id”: null,
“user_id”: null
}
}
Gebeurtenis 0 uitgevoerd 20:03:
{
“event_type”: “zha_event”,
“data”: {
“device_ieee”: “bc:33:ac:xx:xx:xx:xx:xx”,
“unique_id”: “bc:33:ac:xx:xx:xx:xx:xx:1:0x0006”,
“device_id”: “2bf2e7b7e06d705c028a20xxxxxxxxxx”,
“endpoint_id”: 1,
“cluster_id”: 6,
“command”: “off”,
“args”:
},
“origin”: “LOCAL”,
“time_fired”: “2021-12-09T19:03:17.702387+00:00”,
“context”: {
“id”: “d88656849ae183083f2ce4xxxxxxxxxx”,
“parent_id”: null,
“user_id”: null
}
}
The system can detect on and of. Hurray! Now it is time for the next step: Can I use this remote with ZHA with this information? If yes, how?
Thanks!