Full Description of Issue:
(I am a newbie and don’t have much experience with HA)
My environment is as follows:
Hardware
• Konnected Alarm Panel Pro
• Amazon Fire 7 Tablet 9th Gen
• Raspberry PI 4B
HA OS
• Core: 2024.8.1
• Supervisor: 2024.08.0
• Operating: System12.4
• Frontend: 20240809.0
Tablet Software
• Fully Kiosk 1.56.1 (For Android/Fire, Installed on Table)
HACS Integrations and Plugins
• Fully Kiosk Browser
• Alarmo (Integration) v.1.10.4
• Alarmo Card (plugin) v1.5.2
• Kiosk Mode (plugin) v6.1.0
I have so far been successful in creating two of three automations that I require.
My first successful automation is called “Arming Pending”. Essentially, it beeps the tablet for about 45 seconds, after the alarm system is armed. This essentially gives the person a warning that the alarm system is going to be armed soon, and so they need to leave the premise.
Here is my working yaml file for this requirement:
alias: Arming Pending
description: ""
trigger:
- platform: device
device_id: XXXXX
domain: alarm_control_panel
entity_id: XXXXX
type: arming
condition: []
action:
- action: media_player.play_media
target:
entity_id: media_player.fire_tablet
data:
media_content_id: media-source://media_source/local/pending3.mp3
media_content_type: audio/mp3
metadata:
title: pending3.mp3
thumbnail: null
media_class: music
children_media_class: null
navigateIds:
- {}
- media_content_type: app
media_content_id: media-source://media_source
mode: single
My next working automation is designed to send a notification sound to my tablet indicating that the alarm has been successfully disarmed. This automation is also working perfectly.
alias: When Alarmo changed to Disarmed
description: ""
trigger:
- platform: device
device_id: XXXX
domain: alarm_control_panel
entity_id: XXXX
type: disarmed
condition: []
action:
- action: media_player.play_media
target:
entity_id: media_player.fire_tablet
data:
media_content_id: media-source://media_source/local/disarmed.mp3
media_content_type: audio/mpeg
metadata:
title: disarmed.mp3
thumbnail: null
media_class: music
children_media_class: null
navigateIds:
- {}
- media_content_type: app
media_content_id: media-source://media_source
mode: single
Unfortunately, my third automation is not working. It is designed to send a beeping sound to the tablet when someone enters the home, if the alarm is armed and will be going off in 45 seconds.
Currently no sound is being heard from my table when I enter the premises, although the siren does go off as expected.
This is my current “Alarm Pending” yaml file for this automation. (It Is Not Working)
id: 'XXXX'
alias: Alarm Pending
description: ''
trigger:
- platform: device
device_id: XXXX
domain: alarm_control_panel
entity_id: XXXX
type: triggered
condition: []
action:
- action: media_player.play_media
target:
entity_id: media_player.fire_tablet
data:
media_content_id: media-source://media_source/local/waiting_for_disarming.mp3
media_content_type: audio/mp3
metadata:
title: waiting_for_disarming.mp3
thumbnail: null
media_class: music
children_media_class: null
navigateIds:
- {}
- media_content_type: app
media_content_id: media-source://media_source
mode: single
I have made reference to this information to get me to where I am now.
Many thanks
susserj