Hi
there where some changes latetely on the google assistant component, so when you say like, turn all lights, all lights are fired in parallel, and not in sequence anymore like before
i have a TCP controller, so all my lights are turning on/off with TCP commands, and it doesnt like multiple sockets coming in
so i am looking for an alternative, maybe i can add some delay or something when multiple items are fired?
this is an example of my template light, basicly it just sends a shell command with some attriubutes, every light has an unique module/id
- platform: template
lights:
light1:
friendly_name: "Light 1"
turn_on:
- service: shell_command.dobiss
data_template:
module: 41
id: 04
power: 01
turn_off:
- service: shell_command.dobiss
data_template:
module: 41
id: 04
power: 00