Skip to content

scottjjr/AlarmPanel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Custom Alarm Panel Card

This custom alarm panel card was forked in September 2020 from Kevin Cooper's repo (no relation).

I have included my complete working manual alarm control panel configuration, automations, script, lovelace dashboard, etc in the ExampleConfig folder.

Card Modification Goals

  • improve the appearance of the arm/disarm and keypad buttons (which are too small on current Home Assistant versions)
  • high visibility and ergonomically sized buttons on web, iOS companion app, and wall mounted tablet
  • hide the key pad when disarmed (if alarm_control_panel.code_arm_required is off)
  • add a config option to show Ready / Not Ready when disarmed, monitoring a given list of entities
  • add a config option to show a countdown timer when arming or pending (see installation note for required custom manual component)

I changed the buttons from mwc-button to regular buttons. I couldn't find a reliable way to make the mwc-buttons larger (even using tools like Thomas Loven's card mod), and they were just much too small on a wall-mounted tablet.

I moved the Disarm button from the top button row to the keypad, to the right of the 0 button. This allows the overall keypad area and button size to be increased, which is helpful on a phone screen or wall mounted tablet.

Screenshots

Installation

To use this card in Home Assistant:

  • copy the alarm_control_panel-card.js into the www folder in your config folder (create the www folder if it's missing, and restart Home Assistant)
  • install it as a custom Lovelace resource in Configuration > Lovelace Dashboards > Resources.
    • Turn on Advanced Mode in your user profile if you can't see the Resources tab.
    • The Url of the file will be /local/alarm_control_panel-card.js, and the type is "JavaScript Module".
    • If you are making local modifications to the file, you can add a version number to the end of the Url, like /local/alarm_control_panel-card.js?v=3 and increment the number each time you make a change, to force it to use the new version instead of your browser cached version.
  • add the alarm panel to your lovelace view using a Manual card, with type set as type: 'custom:alarm_control_panel-card' and specify your alarm_control_panel entity as named in your configuration.yaml (e.g. entity: alarm_control_panel.house). See my example config.
  • to use the countdown timer, you must install my modified manual alarm component as a custom component. Download the three files from here, and copy them into a custom_components/manual subdirectory of your configuration directory (creating the directories as necessary).

Card configuration options

See the ExampleConfig folder for my configuration files. See details on my setup in the Example Configuration section below.

The card options are:

  • entity: (required string) the name of the manual alarm_control_panel entity
  • show_countdown_timer: (optional boolean). default false. set to true to show countdown timer, or false to hide it.
  • scale: (optional string). default is 14px. increase/decrease the size of the buttons/text/etc by changing this number
  • title: (optional string) if provided will show this title at the top of the card, and the alarm state will be below it. if not provided, will show the alarm state as the title (which saves some vertical space, if you are space constrained, like on a wall tablet)
  • states: (optional list). list of arming states to support. Default is armed_away and armed_home. If you use more than two, you may need to adjust the .actions button widths
  • confirm_entities: (optional list) a list of sensors which will be continuously monitored when disarmed so it can show Ready/Not ready text in the car header
  • labels: (optional list) list of text replacements, allowing you to customize the text that is shown for ui.card.alarm_control_panel.arm_away, ui.card.alarm_control_panel.arm_home, ui.card.alarm_control_panel.clear_code, ready and not_ready
  • display_letters: (optional boolean) shows letters on number pad buttons, like a telephone keypad
  • style: (optional string) this text will be appended to the card css style, allowing you to override colors, etc. Also see Thomas Loven's card mod

Other options from Kevin Cooper's original card which may not work well when alarm_control_panel.code_arm_required is off:

  • auto_hide: (optional boolean) hides the keypad and action buttons. click on the badge to show/hide them.
  • auto_enter: (optional object) specify code_length and arm_action to automatically arm when entering the code.

My Setup

My alarm setup consists of:

Example Configuration

My config files are in the ExampleConfig folder.

  • My Alarm lovelace dashboard has two cards- the new custom alarm panel card, and a Conditional Card which shows when any of the door/window sensors is opened, while disarmed.
  • I have configured the custom card with:
    • label replacements to use shorter all-caps words for the AWAY, HOME, etc.
    • confirm_entities list of sensors, so that it shows "Ready" if they're all off, or "Not ready" if any are on
  • I have set up automations to handle:
    • turning on/off the green/red LEDs, beeper, and siren based on sensor entity states and the manual alarm_control_panel armed/disarmed/triggered state
    • notifying our iphones when armed / disarmed or when triggered
    • triggering the alarm on smoke sensors, regardless of arming state
  • In order to include the name of the entity that triggered the alarm in the trigger notifications, I'm using an input_text entity in my config, which is set when the alarm trigger automation runs, and is then referenced by the notification
  • In order to be able to trigger the alarm immediately for some sensors, while other sensors (e.g. entry doors) are delayed, I have a script called trigger_alarm_immediately which first disarms the alarm, and then triggers. Requires that the the delay_time is set to 0 for the disarmed state in the alarm_control_panel configuration.
  • I created a separate user named Alarm Panel that I use to log in from my wall mounted tablet. I'm using Custom Header to hide the sidebar and title bar on the wall mounted tablet for that user.

Credits

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 61.4%
  • Python 38.6%