I have two dimmers (fibaro) in the living room and one lamp with a zigbee socket (with the xiaomi gateway).
I’m tried with both zwave integrations with the same result but I’m using now the new OpenZwave
I created three scripts, one to switch all on, one to switch all off and one to switch the dimmers off and the socket on.
When I switch the dimmers on or off with the light card it takes approximately 1 second, the zigbee switch is even faster. When I run the script the socket switches instantly but for the dimmers it takes almost ten seconds to react and sometimes they do not react at all
This is one of the scripts, the other two are the same just changing the entities to the on or off service
living_room_tv_mode:
alias: Living Room TV mode
sequence:
- service: homeassistant.turn_off
data: {}
entity_id:
- light.living_room_lamp_dimmer_instance_1_level
- light.living_room_spots_dimmer_instance_1_level
- service: homeassistant.turn_on
data: {}
entity_id:
- switch.floor_lamp
mode: single
Any idea why this happens and how to solve it?