mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-25 04:16:52 +00:00

* Various small fixes Add configuration and other titles Remove empty lines Fix indentation for configuration block Reorder key list to be in line with the rest Delete empty default value and fixed value type * None is a valid value
44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
---
|
|
layout: page
|
|
title: "NX584 Alarm Control Panel"
|
|
description: "Instructions on how to integrate NX584 into Home Assistant."
|
|
date: 2016-02-07 10:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: networx.png
|
|
ha_category: Alarm
|
|
ha_release: 0.13
|
|
---
|
|
|
|
The `nx584` platform provides integration with GE, Caddx, Interlogix (and other brands) alarm panels that support the NX584 interface module (or have it built in). Supported panels include NX4/6/8/8E. Actual integration is done through [pynx584](http://github.com/kk7ds/pynx584) which is required for this to work.
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
To enable this, add the following lines to your `configuration.yaml`:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
alarm_control_panel:
|
|
- platform: nx584
|
|
```
|
|
|
|
{% configuration %}
|
|
host:
|
|
description: The host where the nx584 server process is running.
|
|
required: false
|
|
type: string
|
|
default: localhost
|
|
name:
|
|
description: This parameter allows you to override the name.
|
|
required: false
|
|
type: string
|
|
default: NX584
|
|
port:
|
|
description: The port where the Alarm panel is listening.
|
|
required: false
|
|
type: integer
|
|
default: 5007
|
|
{% endconfiguration %}
|