Franck Nijhof c464056402
Making our website faster, cleaner and prettier (#9853)
* 🔥 Removes octopress.js

* 🔥 Removes use of root_url var

* 🔥 Removes Octopress generator reference from feed

* 🔥 Removes delicious support

* 🔥 Removes support for Pinboard

* 🔥 Removes support for Disqus

* 🔥 Removes support for Google Plus

* ↩️ Migrate custom after_footer to default template

* ↩️ Migrate custom footer to default template

* ↩️ Migrate custom header to default template

* 🔥 Removes unused template files

* 🚀 Places time to read directly in post template

* 🚀 Removes unneeded capture from archive_post.html template

* 🔥 🚀 Removes unused, but heaving sorting call in component page

* 🚀 Merged javascripts into a single file

* 🔥 Removes more uses of root_url

* 🚀 Removal of unneeded captures from head

* 🔥 🚀 Removal of expensive liquid HTML compressor

* 🔥 Removes unneeded templates

* 🚀 Replaces kramdown with GitHub's CommonMark 🚀

* 💄 Adds Prism code syntax highlighting

*  Adds support for redirect in Netlify

* ↩️ 🔥 Let Netlify handle all developer doc redirects

* ✏️ Fixes typo in redirects file: Netify -> Netlify

* 🔥 Removes unused .themes folder

* 🔥 Removes unused aside.html template

* 🔥 Removes Disqus config leftover

* 🔥 Removes rouge highlighter config

* 🔥 Removes Octopress 🎉

* 💄 Adjust code block font size and adds soft wraps

* 💄 Adds styling for inline code blocks

* 💄 Improve styling of note/warning/info boxes + div support

* 🔨 Rewrites all note/warning/info boxes
2019-07-15 22:17:54 +02:00

3.6 KiB

title, description, logo, ha_category, ha_release, redirect_from
title description logo ha_category ha_release redirect_from
Vera Instructions on how to setup Vera Z-Wave hubs and configure devices within Home Assistant. vera.png
Hub
Binary Sensor
Cover
Light
Lock
Scene
Sensor
Switch
Climate
pre 0.7
/components/binary_sensor.vera/
/components/cover.vera/
/components/light.vera/
/components/lock.vera/
/components/scene.vera/
/components/sensor.vera/
/components/switch.vera/
/components/climate.vera/

The Vera hub is a controller mainly connecting to Z-Wave devices.

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

  • Binary Sensor
  • Cover
  • Light
  • Lock
  • Scene
  • Sensor
  • Switch
  • Climate

and will be automatically added when HA connects to your Vera controller.

Configuration

To use Vera devices in your installation, add the following to your configuration.yaml file using the IP and port number of your Vera controller:

vera:
  vera_controller_url: http://192.168.1.161:3480/

{% configuration %} vera_controller_url: description: The URL for your Vera device. required: true type: string {% endconfiguration %}

It is recommended to assign a static IP address to your Vera Controller. This ensures that it won't change IP addresses, so you won't have to change the vera_controller_url if it reboots and comes up with a different IP address. See your router's manual for details on how to set this up. If you need the MAC address of your Vera, check the label on the bottom.

Configure devices

By default your switches will be added to Home Assistant as switches, however, if some of them are light switches, you can tell Home Assistant this using the optional lights parameter as shown below.

Vera imports detailed Z-Wave devices into Home Assistant. This can include system devices and other devices that you don't use; you can tell Home Assistant not to load these devices using the exclude: parameter as shown below.

You can find the Vera device id either via the advanced properties of the device in the Vera UI or by checking the Vera Device Id attribute on each device imported into Home Assistant (under the developer tools).

vera:
  vera_controller_url: http://192.168.1.161:3480/
  # Optional to exclude devices - this is a list of vera device ids
  exclude: [ 13, 14, 16, 20, 23, 72, 73, 74, 75, 76, 77, 78, 88, 89, 99]
  # Optional to import switches as lights - this is a list of vera device ids
  lights: [15, 17, 19, 21, 22, 24, 26, 43, 64, 70, 87]

Using Z-Wave devices in automation

If you want to use a Z-Wave device from the Vera controller in Home Assistant automation, you'll need the entity id. In the Home Assistant UI you'll find all entities listed under the service developer tool icon icon of the Developer Tools section. Look for entities that contain 'Vera Device Id' in their attributes, and you'll find the entity id on the left.

Sensor

The vera platform allows you to get data from your Vera sensors from within Home Assistant.

Please note that some vera sensors (such as motion and flood sensors) are armable which means that vera will send alerts (email messages to txts) when they are armed and change state.

Home Assistant will display the state of these sensors regardless of the armed state.

To allow you to change the armed state - Home Assistant will create a switch as well as a sensor for each Armable sensor. You can hide these switches using customization if you wish.