#Alarmo, Tablet Chiming Sound, Entering before Alarm Starts
1 messages · Page 1 of 1 (latest)
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
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
Does anyone have a working yaml file I can use to make my tablet beep when re-entering the home in the 45 second period before the alarm goes off? Many Thanks
Note, if I run the automation manually the sound does get to the tablet. But obviously, I need it to do so when the alarm is pending, which currently is not working.
In state triggered, the alarm already goes off. I think, you want to use the state pending
And for the future: this is more a question about #automations-archived . It is not really a question about configuring an integration.
It was a long battle but I think I may have gotten it to work. Here is my yaml code.