Hi, totally new user here. My simple automation to turn on 3 plugs (lamps) results in them turning on in sequence, not all at once. There’s no delay built into the coding:
Any thoughts? Code below.
Preformatted textalias: Office lights on description: “”
triggers:
trigger: conversation
command: Alexa turn on office lights
There can be a number of causes for this kind of thing… One option to try would be to use a single switch.turn_on action targeted on all the switch entities, instead of using multiple Device actions. Another option you could try would be parallelizing the actions instead of executing them sequentially, which is the default.
What type of switches are these? Which integration and protocol do they use? Some sources of latency, like cloud-dependency, are baked into the device and/or integration you are using.
Hi thank’s I’ll look into these options. Hive plugs which I think use zigbee, so I’m expecting some latency it was the sequential aspect that surprised me.
For Zigbee devices you have an additional option, using Zigbee groups, which can be very effective at reducing this type of thing… But, I don’t see anything in the Hive integration docs about grouping.
Are you using the Hive hub and integration or using the plugs with a different coordinator with ZHA or Z2MQTT?