NX584

The nx584 integration集成将 Home Assistant 与您的设备、服务等连接和集成。 [Learn more] 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 which is required for this to work.

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

Alarm control panel

To enable this, add the following lines to your configuration.yamlconfiguration.yaml 文件是 Home Assistant 的主要配置文件。它列出了要加载的集成及其特定配置。在某些情况下,需要直接在 configuration.yaml 文件中手动编辑配置。大多数集成可以在 UI 中配置。 [Learn more] file. 在更改了configuration.yamlconfiguration.yaml 文件是 Home Assistant 的主要配置文件。它列出了要加载的集成及其特定配置。在某些情况下,需要直接在 configuration.yaml 文件中手动编辑配置。大多数集成可以在 UI 中配置。 [Learn more] 文件后,重启 Home Assistant 以应用更改。 该集成现在显示在集成页面的 设置 > 设备与服务 下。其实体在集成卡片上以及实体标签上列出。

# Example configuration.yaml entry
alarm_control_panel:
  - platform: nx584

Configuration Variables

host string (Optional, default: localhost)

The host where the nx584 server process is running.

name string (Optional, default: NX584)

This parameter allows you to override the name.

port integer (Optional, default: 5007)

The port where the alarm panel is listening.

Binary sensor

Enabling this binary 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.

To enable this feature, add the following lines to your configuration.yamlconfiguration.yaml 文件是 Home Assistant 的主要配置文件。它列出了要加载的集成及其特定配置。在某些情况下,需要直接在 configuration.yaml 文件中手动编辑配置。大多数集成可以在 UI 中配置。 [Learn more]:

# Example configuration.yaml entry
binary_sensor:
  platform: nx584

Configuration Variables

host string (Optional, default: localhost)

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.

port integer (Optional, default: 5007)

The port where the server process is running.

exclude_zones list | integer (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.

zone_types list (Optional)

This is a list of zone numbers mapped to zone types. Use this to designate zones as doors, motion sensors, smoke detectors, etc. See the list of available zone types relevant to alarm zones below.

opening

Opening

motion

Motion

gas

Gas

smoke

Smoke

moisture

Moisture

safety

Safety

Full example

An extended configuration entry could look like this:

# Full example configuration.yaml entry
binary_sensor:
  platform: nx584
  host: 192.168.1.10
  port: 5007
  exclude_zones:
    - 3
    - 5
  zone_types:
    1: opening
    2: opening
    4: motion
    6: moisture

Actions

Action bypass_zone

This action will bypass a given zone.

Data attribute Optional Description
entity_id yes entity_id of the NX584 Alarm.
zone no Zone number you want to bypass.

Action unbypass_zone

This action will unbypass a given zone.

Data attribute Optional Description
entity_id yes entity_id of the NX584 Alarm.
zone no Zone number you want to unbypass.