#Alarmo, Tablet Chimming Sound, Entering before Alarm Starts

1 messages · Page 1 of 1 (latest)

dusty steeple
#

Unable to invoke working chiming sound during 45 second period after entering home before siren goes off.

#

I am a newbie and don't have much experince with HA.

#

My hardware and environment i 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
#

However, the yaml file for getting my tablet to beep when entering the home before the alarm goes off isn't working. It just makes no sound on the tablet. But If I run it manually the sound comes through on the the table no problem. Here is my non-working yml file.

#

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 that I can use to make my tablet beep when the alarm is pending?

tawdry grail
urban bearBOT
#

An add-on is a Docker container with tweaks to allow it to be configured in the Supervisor UI. It is only available in Home Assistant Operating System and Home Assistant Supervised (#installation-archived) since if you've used any other installation method, you can install software already.

#

#integrations-archived integrate Home Assistant with devices or services, or provide functionality within Home Assistant.

#add-ons-archived provide additional software or services, which an integration could possibility integrate with. Add-ons are for Home Assistant OS and Supervised only, other install methods can install software other ways.