So I have a use case where I want to press a button on my front end to do the two following steps:
- Turn a switch on (this is a snapshot for my Arlo Camera as it doesn’t support streaming)
- Popup a card for my Alarm control panel and also the latest snapshot from the camera
The issues is that I don’t know how to get a button to call two services?
Config for my Alarm pop up:
tap_action:
action: call-service
service: browser_mod.popup
service_data:
card:
entity: alarm_control_panel.aarlo
states:
- arm_home
- arm_away
type: alarm-panel
deviceID: this
title: Alarm Control
Config for my Switch to create a snapshot:
tap_action:
action: call-service
service: switch.turn_on
service_data:
entity_id: switch.aarlo_snapshot_front_door
How can I combine them in the button config?

