Is there a way to write a single rule to track the state of a virtual switch when changed, to set all switches to that state, regardless of their current state?
Toggle is not the answer.
Is there a way to write a single rule to track the state of a virtual switch when changed, to set all switches to that state, regardless of their current state?
Toggle is not the answer.
You could try using the mirror app. Not sure if it will do exactly what you want but it would basically be the same as using this for a rule:
Trigger
Virtual Switch "changed"
Actions
If Virtual switch is on
Then
Turn on switches
Else
Turn off switches
That'll work, thank you!