Skip to content

Commit c69369d

Browse files
committed
Added first version of docs for Satel Integra alarm
1 parent 28fd511 commit c69369d

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: page
3+
title: "Satel Integra Alarm Control Panel"
4+
description: "Instructions how to setup the Satel Integra control panel within Home Assistant."
5+
date: 2017-09-07 13:28
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: satel.jpg
11+
ha_category: Alarm
12+
ha_release: 0.53
13+
ha_iot_class: "Local Push"
14+
---
15+
16+
17+
The `satel_integra` alarm control panel platform allows you to control your [SatelIntegra](http://www.satel.pl/en/) alarms.
18+
19+
The requirement is that you have setup your [SatelIntegra hub](/components/satel_integra/).
20+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: page
3+
title: "Satel Integra Binary Sensor"
4+
description: "Instructions how to integrate Satel Integra binary sensors into Home Assistant."
5+
date: 2017-09-07 13:28
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: satel.jpg
11+
ha_category: Binary Sensor
12+
ha_release: 0.53
13+
ha_iot_class: "Local Push"
14+
---
15+
16+
The `satel_integra` binary sensor allows you to monitor your [SatelIntegra](http://www.satel.pl/en/) alarm zones (inputs).
17+
18+
Check the [type/class](/components/binary_sensor/) list for a possible visualization of your zone.
19+
20+
The requirement is that you have setup your [SatelIntegra hub](/components/satel_integra/).
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
layout: page
3+
title: "Satel Integra Alarm"
4+
description: "Instructions on how to integrate a Satel Integra alarm panel with Home Assistant using an ETHM network extension from Satel."
5+
date: 2017-09-07 13:28
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: satel.jpg
11+
ha_category: Hub
12+
ha_release: 0.53
13+
ha_iot_class: "Local Push"
14+
---
15+
16+
The `satel_integra` component will allow Home Assistant users who own a Satel Integra alarm panel to leverage their alarm system and its sensors to provide Home Assistant with information about their homes. Connectivity between Home Assistant and the alarm is accomplished through a ETHM extension module that must be installed in the alarm.
17+
18+
There is currently support for the following device types within Home Assistant:
19+
20+
- [Binary Sensor](/components/binary_sensor.satel_integra/): Reports on zone statuses
21+
- [Alarm Control Panel](/components/alarm_control_panel.satel_integra/): Reports on alarm status, and can be used to arm/disarm the system
22+
23+
The module communicates via Satel's open TCP protocol published on their website. It subscribes for new events coming from alarm system and reacts to them immediately.
24+
25+
**IMPORTANT:** The library currently doesn't support encrypted connection to your alarm, so you need **to turn off encryption for integration protocol**. In Polish: "koduj integracje" must be unchecked. You will find this setting in your DLOADX program.
26+
27+
A `satel_integra` section must be present in the `configuration.yaml` file and contain the following options as required:
28+
29+
```yaml
30+
# Example configuration.yaml entry
31+
satel_integra:
32+
host: 192.168.1.100
33+
port: 7094
34+
partition: 1
35+
arm_home_mode: 1
36+
37+
zones:
38+
01:
39+
name: 'Bedroom'
40+
type: 'motion'
41+
02:
42+
name: 'Hall'
43+
type: 'motion'
44+
30:
45+
name: 'Kitchen - smoke'
46+
type: 'smoke'
47+
113:
48+
name: 'Entry door'
49+
type: 'opening'
50+
51+
```
52+
53+
Configuration variables:
54+
55+
- **host** (*Required*): The IP address of the Satel Integra ETHM module on your home network, if using socket type. Default: `localhost`
56+
- **port** (*Optional*): The port on which the ETHM module listens for clients using integration protocol. Default: `7094`
57+
- **partition** (*Optional*): The partition to operate on. Integra can support multiple partitions, this platform only supports one. Default: `1`
58+
- **arm_home_mode** (*Optional*): The mode in which arm Satel Integra when 'arm home' is used. Possible options are `1`,`2` or `3`, default being `1`. For more information on what are the differences between them, please refer to Satel Integra manual.
59+
- **zones** (*Optional*): This module does not discover currently which zones are actually in use, so it will only monitor the ones defined in the config. For each zone, a proper ID mus be given as well as it's name (does not need to match the one specified in Satel Integra alarm). For more information on the available zone types, take a look at the [Binary Sensor](/components/binary_sensor.alarmdecoder/) docs. *Note: If no zones are specified, Home Assistant will not load any binary_sensor components.*
60+
61+
List of all zone IDs can be taken from DloadX program.
62+
63+
Having configured the zones, you can use them for automation, such as to react on the movement in your bedroom.
64+
For example:
65+
66+
```yaml
67+
alias: Flick the input switch when movement in bedroom detected
68+
trigger:
69+
platform: state
70+
entity_id: 'binary_sensor.bedroom'
71+
to: 'on'
72+
action:
73+
service: input_boolean.turn_on
74+
data:
75+
entity_id: input_boolean.movement_detected
76+
77+
```
78+
79+
Enjoy!
26.2 KB
Loading

0 commit comments

Comments
 (0)