Site updated at 2017-11-18 20:42:08 UTC

This commit is contained in:
Travis CI 2017-11-18 20:42:08 +00:00
parent 374261cd52
commit 3bb0d0697f
641 changed files with 7982 additions and 2283 deletions

View file

@ -84,15 +84,22 @@
<li>Lutron shades as Home Assistant <a href="/components/cover.lutron_caseta/">covers</a></li>
</ul>
<p>When configured, the <code class="highlighter-rouge">lutron_caseta</code> component will automatically discover the currently supported devices as setup in the Lutron Smart Bridge. The name assigned in the Lutron mobile app will be used to form the <code class="highlighter-rouge">entity_id</code> used in Home Assistant. e.g. a dimmer called Bedroom Lamp becomes <code class="highlighter-rouge">light.bedroom_lamp</code> in Home Assistant.</p>
<p>To use Lutron Caseta devices in your installation, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file using the IP of your Smart Bridge:</p>
<p>To use Lutron Caseta devices in your installation, you must first log in to your Lutron account and generate a certificate that allows Home Assistant to connect to your bridge. This can be accomplished by downloading and executing <a href="/assets/get_lutron_cert.zip">this script</a>, which will generate three files: caseta.key, caseta.crt, caseta-bridge.crt when you run it. See the instructions at the top of the script for more information.</p>
<p>Once you have the three necessary files, place them in your configuration directory and add the following to your <code class="highlighter-rouge">configuration.yaml</code>:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<span class="s">lutron_caseta</span><span class="pi">:</span>
<span class="s">host</span><span class="pi">:</span> <span class="s">IP_ADDRESS</span>
<span class="s">keyfile</span><span class="pi">:</span> <span class="s">caseta.key</span>
<span class="s">certfile</span><span class="pi">:</span> <span class="s">caseta.crt</span>
<span class="s">ca_certs</span><span class="pi">:</span> <span class="s">caseta-bridge.crt</span>
</code></pre>
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>host</strong> (<em>Required</em>): The IP address of the Lutron Smart Bridge.</li>
<li><strong>keyfile</strong> (<em>Required</em>): The private key that Home Assistant will use to authenticate to the bridge.</li>
<li><strong>certfile</strong> (<em>Required</em>): The certificate chain that Home Assistant will use to authenticate to the bridge.</li>
<li><strong>ca_certs</strong> (<em>Required</em>): The list of certificate authorities (usually only one) that Home Assistant will expect when connecting to the bridge.</li>
</ul>
<p class="note">
It is recommended to assign a static IP address to your Lutron Smart Bridge. This ensures that it wont change IP address, so you wont have to change the <code class="highlighter-rouge">host</code> if it reboots and comes up with a different IP address.
@ -341,6 +348,9 @@ Use a DHCP reservation on your router to reserve the address or in the PRO model
<li>
<a href='/components/volvooncall/'>Volvo On Call</a>
</li>
<li>
<a href='/components/vultr/'>Vultr</a>
</li>
<li>
<a href='/components/wink/'>Wink</a>
</li>