NX584

The NX584 integration 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.

Home Assistant 目前支持以下设备类型:

Alarm control panel

To enable this, add the following lines to your configuration.yaml file. After changing the configuration.yaml file, restart Home Assistant to apply the changes. The integration is shown on the integrations page under Settings > Devices & services. Its entities are listed on the integration card itself and on the Entities tab.

# Example configuration.yaml entry
alarm_control_panel:
  - platform: nx584
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

Binary sensor

启用此二进制传感器平台会将您的所有区域公开为二进制传感器,从而通过 UI 提供可见性,并能够在发生开门或运动传感器触发等情况时立即触发自动化操作。

To enable this feature, add the following lines to your configuration.yaml:

# Example configuration.yaml entry
binary_sensor:
  platform: nx584
host:
  description: 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.
  required: false
  type: string
  default: localhost
port:
  description: The port where the server process is running.
  required: false
  type: integer
  default: 5007
exclude_zones:
  description: 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.
  required: false
  type: [list, integer]
zone_types:
  description: 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.
  required: false
  type: list
  keys:
    opening:
      description: Opening
    motion:
      description: Motion
    gas:
      description: Gas
    smoke:
      description: Smoke
    moisture:
      description: Moisture
    safety:
      description: Safety

Full example

扩展配置条目可能如下所示:

# 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

此操作将绕过给定区域。

Data attributeOptionalDescription
entity_idyesentity_id of the NX584 Alarm.
zonenoZone number you want to bypass.

Action unbypass_zone

此操作将取消绕过给定区域。

Data attributeOptionalDescription
entity_idyesentity_id of the NX584 Alarm.
zonenoZone number you want to unbypass.