Add support for ZigBee Home Automation (#2155)

* Add support for ZigBee Home Automation

* Update binary_sensor.zha.markdown

Replace ZHA with ZigBee Home Automation

* Update light.zha.markdown

Replace ZHA with ZigBee Home Automation

* Update sensor.zha.markdown

Replace ZHA with ZigBee Home Automation

* Update switch.zha.markdown

* Update zha.markdown
This commit is contained in:
Russell Cloran 2017-05-04 21:44:40 -07:00 committed by Paulus Schoutsen
parent da1278cc74
commit 57701f81cc
5 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,16 @@
---
layout: page
title: "ZigBee Home Automation Binary Sensor"
description: "Instructions how to setup ZigBee Home Automation binary sensors within Home Assistant."
date: 2017-02-22 00:00
sidebar: true
comments: false
sharing: true
footer: true
logo: zigbee.png
ha_category: Binary Sensor
---
To get your ZigBee binary sensors working with Home Assistant, follow the
instructions for the general [ZigBee Home Automation
component](/components/zha/).

View File

@ -0,0 +1,16 @@
---
layout: page
title: "ZigBee Home Automation Light"
description: "Instructions how to setup ZigBee Home Automation lights within Home Assistant."
date: 2017-02-22 00:00
sidebar: true
comments: false
sharing: true
footer: true
logo: zigbee.png
ha_category: Light
---
To get your ZigBee lights working with Home Assistant, follow the
instructions for the general [ZigBee Home Automation
component](/components/zha/).

View File

@ -0,0 +1,16 @@
---
layout: page
title: "ZigBee Home Automation Sensor"
description: "Instructions how to setup ZigBee Home Automation sensors within Home Assistant."
date: 2017-02-22 00:00
sidebar: true
comments: false
sharing: true
footer: true
logo: zigbee.png
ha_category: Sensor
---
To get your ZigBee sensors working with Home Assistant, follow the
instructions for the general [ZigBee Home Automation
component](/components/zha/).

View File

@ -0,0 +1,16 @@
---
layout: page
title: "ZigBee Home Automation Switch"
description: "Instructions how to setup ZigBee Home Automation switches within Home Assistant."
date: 2017-02-22 00:00
sidebar: true
comments: false
sharing: true
footer: true
logo: zigbee.png
ha_category: Switch
---
To get your ZigBee switches working with Home Assistant, follow the
instructions for the general [ZigBee Home Automation
component](/components/zha/).

View File

@ -0,0 +1,47 @@
---
layout: page
title: "Zigbee Home Automation"
description: "Instructions how to integrate your Zigbee Home Automation within Home Assistant."
date: 2017-02-22 19:59
sidebar: true
comments: false
sharing: true
footer: true
logo: zigbee.png
ha_category: Hub
ha_release: 0.39
---
[ZigBee Home Automation](http://www.zigbee.org/zigbee-for-developers/applicationstandards/zigbeehomeautomation/)
integration for Home Assistant allows you to connect many off-the-shelf ZigBee
devices to Home Assistant, using a compatible ZigBee radio.
There is currently support for the following device types within Home Assistant:
- [Binary Sensor](../binary_sensor.zha) (e.g. motion and door sensors)
- [Sensor](../sensor.zha) (e.g. temperature sensors)
- [Light](../light.zha)
- [Switch](../switch.zha)
Known working ZigBee radios:
- Nortek/GoControl Z-Wave & Zigbee USB Adaptor - Model HUSBZB-1
To configure the component, a `zha` section must be present in the `configuration.yaml`,
and the path to the serial device for the radio and path to the database which will persist your network data is required.
```yaml
# Example configuration.yaml entry
zha:
usb_path: /dev/ttyUSB2
database_path: zigbee.db
```
Configuration variables:
- **usb_path** (*Required*): Path to the serial device for the radio.
- **database_path** (*Required*): Path to the database which will keep persisten newtork data.
To add new devices to the network, call the `permit` service on the `zha` domain, and then follow the device instructions.