1 trigger for every device in a scene?

I did some searching and think the answer to this is probably no, but here goes nothing. I’ve got dozens of door and window sensors. I have a scene that arms them all (“Away”). I’m going through the tedious process of creating triggers for every sensor. Is there a way to create a trigger for which the device is something like “any sensor in this scene”?

Thanks

Use the combination switch app. Here you can make one trigger for all sensors…

agreed.

Ot, you could use PLEG to ‘gather up’ the status of easy sensor and if any are tripped, deposit a “Tripped” variable into Variable Container, or even flip a virtual switch

Conditions:

ASensorIsTripped: Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR …
ASensorIsNotTripped: Not (Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR Sensor1Tripped OR …)

Actions

ASensorIsTripped: Set the Variable to “1”
ASensorIsNotTripped: Set the Variable to "0)

This PLEG will toggle the Variable On if any sensor is tripped

You can see on the attached how to populate the variable in the Advanced tab of the Action

You then create your scenes triggered off of the contents of the Variable

Switching the variable switch is similar