Skip to content

Commit ca55f21

Browse files
committed
Merge pull request #197 from kk7ds/update-nx-honeywell
Update nx584 and honeywell docs
2 parents 476b472 + ac3863d commit ca55f21

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

source/_components/alarm_control_panel.nx584.markdown

+5-3
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,23 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10+
logo: networx.png
1011
ha_category: Alarm
1112
---
1213

13-
The `nx584` platform is consuming the information provided by a NetworX-based alarm panels and should work for any such panel equipped with a NX584 serial interface module like Caddx, GE, or Interlogix. This includes NX-4/6/8/8E, where the NX8E has this interface built-in.
14+
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.
15+
1416

1517
To enable this, add the following lines to your `configuration.yaml`:
1618

1719
```yaml
1820
# Example configuration.yaml entry
1921
alarm_control_panel:
2022
platform: nx584
21-
host: IP_ADDRESS
23+
host: ADDRESS
2224
```
2325
2426
Configuration variables:
2527
26-
- **host** (*Optional*): The IP address of the pynx584 backend server. Defaults to `localhost:5007`.
28+
- **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.
2729

source/_components/thermostat.honeywell.markdown

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: page
33
title: "Honeywell Thermostat"
44
description: "Instructions how to integrate Honeywell thermostats within Home Assistant."
5-
date: 2015-11-09 17:15
5+
date: 2016-02-07 22:01
66
sidebar: true
77
comments: false
88
sharing: true
@@ -23,8 +23,23 @@ thermostat:
2323
password: YOUR_PASSWORD
2424
```
2525
26+
If you are using a Honeywell thermostat in the US, you also need to provide the thermostat identifier:
27+
28+
```yaml
29+
id: IDENT
30+
```
31+
2632
Configuration variables:
2733
2834
- **username** (*Required*: The username of an user with access.
2935
- **password** (*Required*): The password for your given admin account.
3036
- **away_temperature** (*optional*): Heating setpoint when away mode is on. If omitted it defaults to 16.0 deg C.
37+
- **id** (*optional*): Thermostat identifier
38+
39+
To find your thermostat identifier, log into your account, choose a thermostat (if applicable) and then look at the URL. It should look something like this:
40+
41+
```
42+
https://mytotalconnectcomfort.com/portal/Device/Control/1234567
43+
```
44+
45+
In this case, the identifier is `1234567`.
4.09 KB
Loading

0 commit comments

Comments
 (0)