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!