mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-24 00:56:16 +01:00
20 lines
379 B
Nix
20 lines
379 B
Nix
|
{
|
||
|
alias = "Alarm - Pending";
|
||
|
id = "e4771f5a-1205-4fbe-9142-6a56600d7bd4";
|
||
|
|
||
|
trigger = [
|
||
|
{
|
||
|
entity_id = "alarm_control_panel.home_alarm";
|
||
|
from = "armed_away";
|
||
|
platform = "state";
|
||
|
to = "pending";
|
||
|
}
|
||
|
];
|
||
|
action = [
|
||
|
{
|
||
|
data = { message = "Alarm Pending - Intruder Detected!"; };
|
||
|
service = "notify.mobile_app_redrum";
|
||
|
}
|
||
|
];
|
||
|
}
|