You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/satel_integra.markdown
+34-5Lines changed: 34 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,18 +17,20 @@ The `satel_integra` component will allow Home Assistant users who own a Satel In
17
17
18
18
There is currently support for the following device types within Home Assistant:
19
19
20
-
-[Binary Sensor](/components/binary_sensor.satel_integra/): Reports on zone statuses
20
+
-[Binary Sensor](/components/binary_sensor.satel_integra/): Reports on zone or output statuses
21
21
-[Alarm Control Panel](/components/alarm_control_panel.satel_integra/): Reports on alarm status, and can be used to arm/disarm the system
22
22
23
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
24
25
25
## {% linkable_title Setup %}
26
26
27
+
Please note that **ETHM-1 module is currently not supported**: it does not provide functionality used by this extension. At the moment only ETHM-1 Plus module is supported. That might change in the future, but no promisses are given.
28
+
27
29
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.
28
30
29
-
A list of all zone IDs can be taken from DloadX program.
31
+
A list of all zone and output IDs can be acquired by running DloadX program and connecting to your alarm.
30
32
31
-
For more information on the available zone types, take a look at the [Binary Sensor](/components/binary_sensor.alarmdecoder/) documentation. Note: If no zones are specified, Home Assistant will not load any binary_sensor components."
33
+
For more information on the available zone visualisation types, take a look at the [Binary Sensor](/components/binary_sensor.alarmdecoder/) documentation. Note: If no zones or outputs are specified, Home Assistant will not load any binary_sensor components."
32
34
33
35
## {% linkable_title Configuration %}
34
36
@@ -62,7 +64,21 @@ arm_home_mode:
62
64
default: 1
63
65
type: integer
64
66
zones:
65
-
description: "This module does not discover currently which zones are actually in use, so it will only monitor the ones defined in the configuration. For each zone, a proper ID must be given as well as its name (does not need to match the one specified in Satel Integra alarm)."
67
+
description: "This parameter lists the zones (or inputs) that will be visible by Home Assistant. For each zone, a proper ID must be given as well as its name. The name is arbitrary and does not need to match the one specified in Satel Integra alarm configuration."
68
+
required: false
69
+
type: [integer, list]
70
+
keys:
71
+
name:
72
+
description: Name of the zone.
73
+
required: true
74
+
type: string
75
+
type:
76
+
description: The zone type.
77
+
required: false
78
+
default: motion
79
+
type: string
80
+
outputs:
81
+
description: "Very similar to zones, but with outputs. Satel Integra uses outputs to inform external systems about different events. For example power failure, or that alarm started counting for exit or some other user-defined condition. They may be used for simple alarm-based automation. For more information please refer to Satel homepage and forums."
66
82
required: false
67
83
type: [integer, list]
68
84
keys:
@@ -101,9 +117,22 @@ satel_integra:
101
117
113:
102
118
name: 'Entry door'
103
119
type: 'opening'
120
+
outputs:
121
+
05:
122
+
name: 'Garden lights trigger'
123
+
type: 'light'
124
+
09:
125
+
name: 'Gate opening trigger'
126
+
type: 'opening'
127
+
30:
128
+
name: 'Alarm triggered'
129
+
type: 'safety'
130
+
32:
131
+
name: 'Alarm power problem'
132
+
type: 'safety'
104
133
```
105
134
106
-
Having configured the zones, you can use them for automation, such as to react on the movement in your bedroom.
135
+
Having configured the zones and the outputs, you can use them for automation, such as to react on the movement in your bedroom.
0 commit comments