AlarmDecoder
The alarmdecoder
integration will allow Home Assistant users who own either a DSC or Honeywell alarm panel to leverage their alarm system and its sensors to provide Home Assistant with rich information about their homes. Connectivity between Home Assistant and the alarm panel is accomplished through a device produced by Nu Tech Software Solutions, known as the AlarmDecoder. The AlarmDecoder devices provide a serial, TCP/IP socket or USB interface to the alarm panel, where it emulates an alarm keypad.
Please visit the AlarmDecoder website for further information about the AlarmDecoder devices.
There is currently support for the following device types within Home Assistant:
- Alarm Control Panel: Reports on alarm status, and can be used to arm/disarm the system
- Sensor: Emulates a keypad display
- Binary Sensor: Reports on zone status
This is a fully event-based integration. Any event sent by the AlarmDecoder device will be immediately reflected within Home Assistant.
Configuration
To add the AlarmDecoder integration to your Home Assistant instance, use this My button:
If the above My button doesn’t work, you can also perform the following steps manually:
-
Browse to your Home Assistant instance.
-
In the bottom right corner, select the Add Integration button.
-
From the list, select AlarmDecoder.
-
Follow the instructions on screen to complete the setup.
You will be prompted to select a protocol (i.e. socket
or serial
). Depending on your selection, you will be asked for the following connection information:
-
socket:
- host - the hostname or IP address of the machine connected to the AlarmDecoder device
-
port - the port that AlarmDecoder is accessible on (i.e.
10000
)
-
serial:
-
path - the path to the AlarmDecoder device (i.e.
/dev/ttyUSB0
) -
baud rate - the baud rate of the AlarmDecoder device (i.e.
115200
)
-
path - the path to the AlarmDecoder device (i.e.
Settings
Once AlarmDecoder has been set up according to the instructions above, the arming settings and zones can be configured by selecting Options on the AlarmDecoder card on the Settings -> Devices & Services page.
Arming Settings
There are currently 3 arming settings for AlarmDecoder (shown below).
-
Alternative Night Mode - For Honeywell systems, set to
true
to enable Night-Stay mode instead of Instant mode for night arming. For DSC systems, set totrue
to enable No-Entry mode instead of Stay mode for night arming. For both systems, whenever this option is set totrue
, a code will be required for night arming regardless of the Code Required for Arming setting. See Arming Key Sequences section below for more information. -
Auto Bypass on Arm - (Honeywell only) Set to
true
to automatically bypass all open zones by sendingcode
+6#
before arming. This setting requires a code only if there are faulted zones when arming. -
Code Required for Arming - Set to
false
to enable arming without a code. See Arming Key Sequences section below for more information.
Zones
Zones can be added, edited, and removed through the option forms.
Each zone that’s added to AlarmDecoder will have its own binary sensor created.
Adding a New Zone
When prompted, enter the number of the zone you’d like to add. Press Submit to move to the next screen where you’ll be prompted for the zone settings. Press Submit again to save.
Note: The zone number that was entered will appear as an attribute on the binary sensor entity that’s created in order to easily edit the zone settings at a later time.
Editing an Existing Zone
When prompted, enter the number of the zone you’d like to edit. Press Submit to move to the next screen where the existing zone settings will be pre-filled. Edit the zone settings and press Submit to save the changes.
Removing an Existing Zone
When prompted, enter the number of the zone you’d like to remove. Press Submit to move to the next screen where the existing zone settings will be pre-filled. Clear the Zone Name field and press Submit.
Zone Settings
The settings for zones are described below:
- Zone Name - a name for the zone
- Zone Type - the type of sensor (see Device Classes)
- RF Serial - (optional) The RF serial-number associated with wireless RF zones. Providing this field allows Home Assistant to associate raw sensor data to a given zone, allowing direct monitoring of the state, battery, and supervision status.
- RF Loop - (optional) The loop number associated with RF zones (1, 2, 3, or 4). Providing this field allows Home Assistant to read open/closed status from the raw sensor data in addition to from the panel display, meaning it can correctly show a bypassed RF zone as open or closed when the alarm is armed. (This is an alternative to relayaddr/relaychan below for RF zones.)
- Relay Address - (optional) Address of the relay or zone expander board to associate with the zone. (ex: 12, 13, 14, or 15). Typically used in cases where a panel will not send bypassed zones such as motion during an armed home state, the Vista 20P is an example of this. AlarmDecoder can emulate a zone expander board and the panel can be programmed to push zone events to this virtual expander. This allows the bypassed zone binary sensors to be utilized. One example is using bypassed motion sensors at night for motion-based automated lights while the system is armed with the motion sensor bypassed.
- Relay Channel - (optional) Channel of the relay or zone expander board to associate with the zone. (ex: 1, 2, 3, or 4 for relay expander boards, 1 - 8 for zone expander boards)
Alarm Control Panel
There are several attributes available on the alarm panel to give you more information about your alarm.
-
ac_power
: Set totrue
if your system has AC power supplying it. -
alarm_event_occurred
: Set totrue
if your system was recently triggered. Whenalarm_event_occurred
istrue
, it must be cleared by entering your code + 1 (or calling thealarm_control_panel.alarm_disarm
service) before attempting to arm your alarm. -
backlight_on
: Set totrue
if your keypad’s backlight is on. -
battery_low
: Set totrue
if your system’s back-up battery is low. -
check_zone
: Set totrue
if your system detects a problem with a zone. -
chime
: Set totrue
if your system’s chime is activated. When activated, your system will beep anytime a door or window is faulted while the alarm is disarmed. -
entry_delay_off
: Set totrue
if your system is in “Instant” mode, meaning the alarm will sound on any faults. -
programming_mode
: Set totrue
if your system is in programming mode. -
ready
: Set totrue
if your system is ready to be armed. Any faults, including motions sensors, will make this valuefalse
. -
zone_bypassed
: Set totrue
if your system is currently bypassing a zone. -
code_arm_required
: Set to the value specified in your AlarmDecoder options.
Services
The Alarm Decoder integration gives you access to several services for you to control your alarm with.
-
alarm_arm_away
: Arms the alarm in away mode; all faults will trigger the alarm. -
alarm_arm_home
: Arms the alarm in stay mode; faults to the doors or windows will trigger the alarm. -
alarm_arm_night
: Arms the alarm according to theAlternative Night Mode
option. -
alarm_disarm
: Disarms the alarm from any state. -
alarmdecoder.alarm_keypress
: Sends a string of characters to the alarm, as if you had touched those keys on a keypad. -
alarmdecoder.alarm_toggle_chime
: Toggles the alarm’s chime state.
alarm_arm_custom_bypass
and alarm_trigger
, while available in the services list in Home Assistant, are not currently implemented in the Alarm Decoder platform.
Examples
Using a combination of the available services and attributes, you can create switch templates.
Chime Status and Control
- platform: template
switches:
alarm_chime:
friendly_name: Chime
value_template: "{{ is_state_attr('alarm_control_panel.alarm_panel', 'chime', true) }}"
turn_on:
- condition: state
entity_id: alarm_control_panel.alarm_panel
attribute: chime
state: False
- service: alarmdecoder.alarm_toggle_chime
target:
entity_id: alarm_control_panel.alarm_panel
data:
code: !secret alarm_code
turn_off:
- condition: state
entity_id: alarm_control_panel.alarm_panel
attribute: chime
state: True
- service: alarmdecoder.alarm_toggle_chime
target:
entity_id: alarm_control_panel.alarm_panel
data:
code: !secret alarm_code
icon_template: >-
{% if is_state_attr('alarm_control_panel.alarm_panel', 'chime', true) %}
mdi:bell-ring
{% else %}
mdi:bell-off
{% endif %}
Arming Key Sequences
The tables below show the key press sequences used for arming for the different panel brands and configuration setting combinations. They are taken from the adext PyPI package.
Honeywell
code_arm_required = true (default)
Mode | Key Sequence |
---|---|
alarm_arm_home |
code + 3
|
alarm_arm_away |
code + 2
|
alarm_arm_night (alt_night_mode = false , default) |
code + 7
|
alarm_arm_night (alt_night_mode = true ) |
code + 33
|
code_arm_required = false
Mode | Key Sequence |
---|---|
alarm_arm_home |
#3 |
alarm_arm_away |
#2 |
alarm_arm_night (alt_night_mode = false , default) |
#7 |
alarm_arm_night (alt_night_mode = true ) |
code + 33
|
DSC
code_arm_required = true (default)
Mode | Key Sequence |
---|---|
alarm_arm_home |
code |
alarm_arm_away |
code |
alarm_arm_night (alt_night_mode = false , default) |
code |
alarm_arm_night (alt_night_mode = true ) |
*9 + code
|
code_arm_required = false
The chr(4)
and chr(5)
sequences below are equivalent to pressing the Stay and Away keypad keys respectively (as outlined in the AlarmDecoder documentation).
Mode | Key Sequence |
---|---|
alarm_arm_home |
chr(4) + chr(4) + chr(4)
|
alarm_arm_away |
chr(5) + chr(5) + chr(5)
|
alarm_arm_night (alt_night_mode = false , default) |
chr(4) + chr(4) + chr(4)
|
alarm_arm_night (alt_night_mode = true ) |
*9 + code
|