Skip to content

Commit 30e459a

Browse files
authored
Updated information about outputs support.
New version of the component is coming with the outputs monitoring support. Added clear info about hardware platform supported. Improved some wording.
1 parent 6551201 commit 30e459a

File tree

1 file changed

+34
-5
lines changed

1 file changed

+34
-5
lines changed

source/_components/satel_integra.markdown

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,20 @@ The `satel_integra` component will allow Home Assistant users who own a Satel In
1717

1818
There is currently support for the following device types within Home Assistant:
1919

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
2121
- [Alarm Control Panel](/components/alarm_control_panel.satel_integra/): Reports on alarm status, and can be used to arm/disarm the system
2222

2323
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.
2424

2525
## {% linkable_title Setup %}
2626

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+
2729
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.
2830

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.
3032

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."
3234

3335
## {% linkable_title Configuration %}
3436

@@ -62,7 +64,21 @@ arm_home_mode:
6264
default: 1
6365
type: integer
6466
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."
6682
required: false
6783
type: [integer, list]
6884
keys:
@@ -101,9 +117,22 @@ satel_integra:
101117
113:
102118
name: 'Entry door'
103119
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'
104133
```
105134

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.
107136
For example:
108137

109138
```yaml

0 commit comments

Comments
 (0)