Klaas Schoute 19d267b572 Updated all Zigbee configuration variable (#6514)
* Updated all Zigbee configuration variable

Updated style of all Zigbee documentation to follow new configuration variables description.
Related to #6385.

* Update binary_sensor.zigbee.markdown

* Update zigbee.markdown

✏️ Tweak

* Update switch.zigbee.markdown

✏️ Tweak

* Update sensor.zigbee.markdown

✏️ Tweak

* Update light.zigbee.markdown

✏️ Tweak

* Update binary_sensor.zigbee.markdown

✏️ Tweak

* Update zigbee.markdown

✏️ Second Tweak
2018-10-05 12:41:00 +02:00

1.9 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page ZigBee Instructions on how to integrate a ZigBee network with Home Assistant. 2016-01-27 17:10 true false true true zigbee.png DIY 0.12 Local Polling

ZigBee integration for Home Assistant allows you to utilize modules such as the XBee as wireless General Purpose Input/Output (GPIO) devices. The component requires a local ZigBee device to be connected to a serial port. Through this it will send and receive commands to and from other devices on the ZigBee mesh network.

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

The local ZigBee device (assuming XBee) must have an up to date Router or Coordinator API firmware installed.

A zigbee section must be present in the configuration.yaml file and contain the following options as required:

# Example configuration.yaml entry
zigbee:

{% configuration %} device: description: The serial port to which the local ZigBee device is connected. required: false default: "/dev/ttyUSB0" type: string baud: description: The baud rate at which to communicate with the local ZigBee device. required: false default: 9600 type: integer {% endconfiguration %}

To find the possible serial port names of your device, run:

$ ls /dev/ttyUSB*

The port may also appear as /dev/ttyACM* if you're communicating with the ZigBee device through an Arduino.

{% linkable_title Example %}

# Example configuration.yaml entry
zigbee:
  device: /dev/ttyACM1
  baud: 115200