Site updated at 2017-04-30 08:07:44 UTC

This commit is contained in:
Travis CI 2017-04-30 08:07:45 +00:00
parent 04c00c7d8b
commit 2d606039b9
26 changed files with 50 additions and 48 deletions

View file

@ -69,9 +69,10 @@
<p><a href="http://www.lutron.com/">Lutron</a> is an American lighting control company. They have several lines of home automation devices that manage light switches/dimmers, occupancy sensors, HVAC controls, etc. The <code class="highlighter-rouge">lutron</code> component in Home Assistant is responsible for communicating with the main hub for these systems.</p>
<p>Presently, theres only support for communicating with the <a href="http://www.lutron.com/en-US/Products/Pages/WholeHomeSystems/RadioRA2/Overview.aspx">RadioRA 2</a> Main Repeater and only handle light switches and dimmers.</p>
<p>When configured, the <code class="highlighter-rouge">lutron</code> component will automatically discover the rooms and their associated switches/dimmers as configured by the RadioRA 2 software from Lutron. Each room will be treated as a separate group.</p>
<p>To use Lutron RadioRA 2 devices in your installation, add the following to your configuration.yaml file using the IP of your RadioRA 2 Main Repeater:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">lutron</span><span class="pi">:</span>
<span class="s">lutron_host</span><span class="pi">:</span> <span class="s">&lt;ip&gt;</span>
<p>To use Lutron RadioRA 2 devices in your installation, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file using the IP of your RadioRA 2 Main Repeater:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<span class="s">lutron</span><span class="pi">:</span>
<span class="s">lutron_host:IP_ADDRESS</span>
<span class="s">lutron_user</span><span class="pi">:</span> <span class="s">lutron</span>
<span class="s">lutron_password</span><span class="pi">:</span> <span class="s">integration</span>
</code></pre>
@ -83,7 +84,7 @@
<li><strong>lutron_password</strong> (<em>Required</em>): The password for the user specified above. <code class="highlighter-rouge">integration</code> is the password for the always-present <code class="highlighter-rouge">lutron</code> user.</li>
</ul>
<p class="note">
It is recommended to assign a static IP address to your Main Repeater. This ensures that it wont change IP addresses, so you wont have to change the <code class="highlighter-rouge">lutron_ip</code> if it reboots and comes up with a different IP address.
It is recommended to assign a static IP address to your Main Repeater. This ensures that it wont change IP addresses, so you wont have to change the <code class="highlighter-rouge">lutron_ip</code> if it reboots and comes up with a different IP address.
</p>
</article>
</div>

View file

@ -66,12 +66,13 @@
</h1>
</header>
<hr class="divider">
<p><a href="http://www.lutron.com/">Lutron</a> is an American lighting control company. They have several lines of home automation devices that manage light switches/dimmers, occupancy sensors, HVAC controls, etc. The <code class="highlighter-rouge">lutron_caseta</code> component in Home Assistant is responsible for communicating with the Lutron SmartBridge for these systems.</p>
<p>This component only supports the Caseta line of products. Current only supports Caseta dimmers as Home Assistant lights and caseta wall switches as Home Assistant switches.</p>
<p><a href="http://www.lutron.com/">Lutron</a> is an American lighting control company. They have several lines of home automation devices that manage light switches/dimmers, occupancy sensors, HVAC controls, etc. The <code class="highlighter-rouge">lutron_caseta</code> component in Home Assistant is responsible for communicating with the Lutron SmartBridge for these systems.</p>
<p>This component only supports the Caseta line of products. Current only supports Caseta dimmers as Home Assistant lights and caseta wall switches as Home Assistant switches.</p>
<p>When configured, the <code class="highlighter-rouge">lutron_caseta</code> component will automatically discover dimmers and switches as setup in the Lutron SmartBridge.</p>
<p>To use Lutron Caseta devices in your installation, add the following to your configuration.yaml file using the IP of your lutron Smartbridge:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">lutron_caseta</span><span class="pi">:</span>
<span class="s">host</span><span class="pi">:</span> <span class="s">&lt;ip_address&gt;</span>
<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 lutron Smartbridge:</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>
</code></pre>
</div>
<p>Configuration variables:</p>
@ -79,7 +80,7 @@
<li><strong>host</strong> (<em>Required</em>): The IP address of the Lutron SmartBridge.</li>
</ul>
<p class="note">
It is recommended to assign a static IP address to your Lutron SmartBridge. 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.
It is recommended to assign a static IP address to your Lutron SmartBridge. 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.
</p>
</article>
</div>