cancel
Showing results for 
Search instead for 
Did you mean: 

Public Preview - one starter with multiple sets of conditions/actions?

Bluto
Community Member

Is there a way to use one starter to initiate multiple condition evaluations/actions?  Something like:

automation

   starter

      condition

      action

      condition

      action

      condition

      action

      condition

      action

What I am trying to do is, after on starter, evaluate each of 14 lights and turn off if on.

 

1 REPLY 1

Nes58
Community Member

When the goal is to turn all 14 lights, just use device.command.OnOff for all 14 lights. No need to check if they are on. Something like this.

actions:
- type: device.command.OnOff
devices:
- light1
- light2
- etc
on: false