First off, here is my setup
- Coordinator: Conbee 2 stick
- Integration: Deconz (Phoscon)
- Lights: 2 Zigbee bulbs (LIDL Livarno E14)
- Switches:
- Ikea 5-button Zigbee remote E1524 (the round one)
- Aqara H1, the double rocker wireless Zigbee switch WXKG15LM (WRS-R02)
1 - with the Ikea 5-button Zigbee remote, toggling those 2 lights is blazing fast
alias: Toggle Study lights with Ikea Tradfri remote
description: ""
trigger:
- device_id: e731dfd279799fd6d208e604e727e0a7
domain: deconz
platform: device
type: remote_button_short_press
subtype: turn_on
condition: []
action:
- service: light.toggle
metadata: {}
data: {}
target:
entity_id: light.study
mode: single
2 - with the Aqara H1, it’s not as snappy as with the Ikea.
There is a noticeable delay.
Nothing crazy but clearly slower than with the Ikea button
I first thought that could come from the fact that I use the platform: event
(deconz_event here) instead of the platform: device
like with the Ikea button.
But with the Aqara H1 I don’t have a choice because all is exposed for that device (with my Deconz integration at least) as a trigger is the battery level change
alias: Aqara H1 Toggle study lights
description: Aqara H1 Toggle study lights
trigger:
- platform: event
event_type: deconz_event
event_data:
id: aqara_switch_dining_room
unique_id: 54:ef:44:10:00:06:5f:e8
event: 1002
device_id: 77d17f9d2a63cc777023d3f5f60aad1a
condition: []
action:
- service: light.toggle
metadata: {}
data: {}
target:
entity_id: light.study
mode: single
So I told myself the relative slowliness of the Aqara might come from the platform: event
so I created an automation with the Ikea button using the platform: event and it was quick nonetheless.
Conclusion: could there be a setting related to the Aqara H1 switch itself that would make it a tad bit “slow”? If so, can it be modified?
I deep-dived into the Phoscon settings but they are absolutely not user-friendly