Skip to content

Commit 27aea33

Browse files
committed
Update configuration variables
1 parent d24343e commit 27aea33

File tree

1 file changed

+12
-20
lines changed

1 file changed

+12
-20
lines changed

source/_components/binary_sensor.nx584.markdown

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,14 @@ The `nx584` platform provides integration with GE, Caddx, Interlogix (and other
1717

1818
Enabling this sensor platform exposes all of your zones as binary sensors, which provides visibility through the UI as well as the ability to trigger automation actions instantly when something happens like a door opening, or a motion sensor trigger.
1919

20-
To enable this, add the following lines to your `configuration.yaml`:
20+
To enable this feature, add the following lines to your `configuration.yaml`:
2121

2222
```yaml
23+
# Example configuration.yaml entry
2324
binary_sensor:
2425
platform: nx584
25-
host: ADDRESS
26-
exclude_zones:
27-
- ZONE ...
28-
zone_types:
29-
ZONE: TYPE
30-
```
31-
32-
Configuration variables:
33-
34-
- **host** (*Optional*): This is the host connection string (host:port) for the nx584 server process. If unset, it is assumed to be `localhost:5007`, which will work if the server process is running on the same system as home-assistant.
35-
- **exclude_zones** (*Optional*): This is a list of zone numbers that should be excluded. Use this to avoid exposing a zone that is of no interest, unconnected, etc.
36-
- **zone_types** (*Optional*): This is a list of zone numbers mapped to zone types. Use this to designate zones as doors, motion sensors, smoke detectors, etc. The list of available zone types relevant to alarm zones are: `opening`, `motion`, `gas`, `smoke`, `moisture`, `safety`.
37-
38-
Example configuration:
39-
40-
```yaml
41-
binary_sensor:
42-
platform: nx584
43-
host: 192.168.1.10:5007
26+
host: 192.168.1.10
27+
pport: 5007
4428
exclude_zones:
4529
- 3
4630
- 5
@@ -50,3 +34,11 @@ binary_sensor:
5034
4: motion
5135
6: moisture
5236
```
37+
38+
Configuration variables:
39+
40+
- **host** (*Optional*): This is the host where the nx584 server process is running. If unset, it is assumed to be `localhost`, which will work if the server process is running on the same system as Home Assistant.
41+
- **port** (*Optional*): The port where the server process is running. Defaults to `5007`.
42+
- **exclude_zones** (*Optional*): This is a list of zone numbers that should be excluded. Use this to avoid exposing a zone that is of no interest, unconnected, etc.
43+
- **zone_types** (*Optional*): This is a list of zone numbers mapped to zone types. Use this to designate zones as doors, motion sensors, smoke detectors, etc. The list of available zone types relevant to alarm zones are: `opening`, `motion`, `gas`, `smoke`, `moisture`, `safety`.
44+

0 commit comments

Comments
 (0)