Site updated at 2017-05-07 21:02:25 UTC
This commit is contained in:
parent
00dcc54eca
commit
9940816edc
27 changed files with 120 additions and 48 deletions
|
@ -8,7 +8,7 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Vera - Home Assistant</title>
|
||||
<meta name="author" content="Home Assistant">
|
||||
<meta name="description" content="Instructions how to setup Vera hubs within Home Assistant.">
|
||||
<meta name="description" content="Instructions how to setup Vera Z-Wave hubs and configure devices within Home Assistant.">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="canonical" href="https://home-assistant.io/components/vera/">
|
||||
<meta property="fb:app_id" content="338291289691179">
|
||||
|
@ -16,12 +16,12 @@
|
|||
<meta property="og:site_name" content="Home Assistant">
|
||||
<meta property="og:url" content="https://home-assistant.io/components/vera/">
|
||||
<meta property="og:type" content="article">
|
||||
<meta property="og:description" content="Instructions how to setup Vera hubs within Home Assistant.">
|
||||
<meta property="og:description" content="Instructions how to setup Vera Z-Wave hubs and configure devices within Home Assistant.">
|
||||
<meta property="og:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:site" content="@home_assistant">
|
||||
<meta name="twitter:title" content="Vera">
|
||||
<meta name="twitter:description" content="Instructions how to setup Vera hubs within Home Assistant.">
|
||||
<meta name="twitter:description" content="Instructions how to setup Vera Z-Wave hubs and configure devices within Home Assistant.">
|
||||
<meta name="twitter:image" content="https://home-assistant.io/images/default-social.png">
|
||||
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
|
||||
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
|
||||
|
@ -68,7 +68,7 @@
|
|||
<hr class="divider">
|
||||
<p>The <a href="http://getvera.com">Vera</a> hub is a controller mainly connecting to Z-Wave devices.</p>
|
||||
<p>Switches, Lights (inc Dimmers), Locks, Sensors and Binary sensors are supported - and will be automatically added when HA connects to your Vera controller.</p>
|
||||
<p>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:</p>
|
||||
<p>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:</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">vera</span><span class="pi">:</span>
|
||||
<span class="s">vera_controller_url</span><span class="pi">:</span> <span class="s">http://192.168.1.161:3480/</span>
|
||||
</code></pre>
|
||||
|
@ -80,9 +80,10 @@
|
|||
<p class="note">
|
||||
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 <code class="highlighter-rouge">vera_controller_url</code> 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.
|
||||
</p>
|
||||
<h3><a class="title-link" name="configure-devices" href="#configure-devices"></a> Configure devices</h3>
|
||||
<p>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 <code class="highlighter-rouge">lights</code> parameter as shown below.</p>
|
||||
<p>Vera imports detailed zwave 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 <code class="highlighter-rouge">exclude:</code> parameter as shown below.</p>
|
||||
<p>You can find the vera device id either by looking at your vera controller or by checking the <code class="highlighter-rouge">Vera Device Id</code> attribute on each device imported into Home Assistant.</p>
|
||||
<p>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 <code class="highlighter-rouge">exclude:</code> parameter as shown below.</p>
|
||||
<p>You can find the Vera device id either via the advanced properties of the device in the Vera UI or by checking the <code class="highlighter-rouge">Vera Device Id</code> attribute on each device imported into Home Assistant (under the developer tools).</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">vera</span><span class="pi">:</span>
|
||||
<span class="s">vera_controller_url</span><span class="pi">:</span> <span class="s">http://192.168.1.161:3480/</span>
|
||||
<span class="c1"># Optional to exclude devices - this is a list of vera device ids</span>
|
||||
|
@ -91,6 +92,8 @@
|
|||
<span class="s">lights</span><span class="pi">:</span> <span class="pi">[</span><span class="nv">15</span><span class="pi">,</span> <span class="nv">17</span><span class="pi">,</span> <span class="nv">19</span><span class="pi">,</span> <span class="nv">21</span><span class="pi">,</span> <span class="nv">22</span><span class="pi">,</span> <span class="nv">24</span><span class="pi">,</span> <span class="nv">26</span><span class="pi">,</span> <span class="nv">43</span><span class="pi">,</span> <span class="nv">64</span><span class="pi">,</span> <span class="nv">70</span><span class="pi">,</span> <span class="nv">87</span><span class="pi">]</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
<h3><a class="title-link" name="using-z-wave-devices-in-automation" href="#using-z-wave-devices-in-automation"></a> Using Z-Wave devices in automation</h3>
|
||||
<p>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 <img src="/images/screenshots/developer-tool-states-icon.png" alt="service developer tool icon" class="no-shadow" height="38" /> icon of the Developer Tools section. Look for entities that contain ‘Vera Device Id’ in their attributes, you’ll find the entity id on the left.</p>
|
||||
</article>
|
||||
</div>
|
||||
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue