v1.0.4
New features π
- Trigger a Notification When iAlarm is Triggered
This automation allows you to send a notification if the iAlarm system is in a triggered state:
alias: Alarm Zone Notification
description: "Sends a notification when a zone in iAlarm is triggered."
triggers:
- platform: event
event_type: ialarm_triggered
variables:
triggered_zone: "{{ trigger.event.data.alarmed_zones[0].name }}"
conditions: []
actions:
- service: notify.persistent_notification
data:
title: "Alarm Triggered"
message: "Attention: The zone [{{ triggered_zone }}] is in alarm!"
mode: single
Full Changelog: v1.0.3...v1.0.4