Site updated at 2016-08-22 08:21:42 UTC

This commit is contained in:
Travis CI 2016-08-22 08:21:43 +00:00
parent f9d65cbe57
commit 4acb07bf8e
559 changed files with 18878 additions and 21688 deletions

View file

@ -89,58 +89,52 @@
<hr class="divider">
<p>The <code>rfxtrx</code> platform supports Siemens/LightwaveRF and RFY roller shutters that communicate in the frequency range of 433.92 MHz.</p>
<p>The <code class="highlighter-rouge">rfxtrx</code> platform supports Siemens/LightwaveRF and RFY roller shutters that communicate in the frequency range of 433.92 MHz.</p>
<p>First you have to set up your <a href="/components/rfxtrx/">rfxtrx hub</a>.</p>
<h3><a class="title-link" name="configuration" href="#configuration"></a> Configuration</h3>
<h5>Siemens/LightwaveRF</h5>
<p>The easiest way to find your roller shutters is to add this to your <code>configuration.yaml</code>:</p>
<p>The easiest way to find your roller shutters is to add this to your <code class="highlighter-rouge">configuration.yaml</code>:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="key">rollershutter</span>:
<span class="key">platform</span>: <span class="string"><span class="content">rfxtrx</span></span>
<span class="key">automatic_add</span>: <span class="string"><span class="content">True</span></span>
</pre></div>
</div>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">rollershutter</span><span class="pi">:</span>
<span class="s">platform</span><span class="pi">:</span> <span class="s">rfxtrx</span>
<span class="s">automatic_add</span><span class="pi">:</span> <span class="s">True</span>
</code></pre>
</div>
<p>Launch your homeassistant and go the website (e.g http://localhost:8123).<br />
<p>Launch your homeassistant and go the website (e.g http://localhost:8123).
Push your remote and your device should be added.</p>
<p>Once added it will show an ID (e.g <code>0b11000102ef9f210010f70</code>) and you can verify that it works from the frontend.<br />
<p>Once added it will show an ID (e.g <code class="highlighter-rouge">0b11000102ef9f210010f70</code>) and you can verify that it works from the frontend.
Then you should update your configuration to:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="key">rollershutter</span>:
<span class="key">platform</span>: <span class="string"><span class="content">rfxtrx</span></span>
<span class="key">devices</span>:
<span class="key">0b11000102ef9f210010f70</span>:
<span class="key">name</span>: <span class="string"><span class="content">device_name</span></span>
</pre></div>
</div>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">rollershutter</span><span class="pi">:</span>
<span class="s">platform</span><span class="pi">:</span> <span class="s">rfxtrx</span>
<span class="s">devices</span><span class="pi">:</span>
<span class="s">0b11000102ef9f210010f70</span><span class="pi">:</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">device_name</span>
</code></pre>
</div>
<h5>RFY</h5>
<p>The <a href="http://www.rfxcom.com/RFXtrx433E-USB-43392MHz-Transceiver/en">RFXtrx433e</a> is required for RFY support, however it does not support receive for the RFY protocol - as such devices cannot be automatically added. Instead, configure the device in the <a href="http://www.rfxcom.com/downloads.htm">rfxmngr</a> tool. Make a note of the assigned ID and Unit Code and then add a device to the configuration with the following id <code>071a0000[id][unit_code]</code>. Eg, if the id was <code>0a</code> <code>00</code> <code>01</code>, and the unit code was <code>01</code> then the fully qualified id would be <code>071a00000a000101</code>.</p>
<p>The <a href="http://www.rfxcom.com/RFXtrx433E-USB-43392MHz-Transceiver/en">RFXtrx433e</a> is required for RFY support, however it does not support receive for the RFY protocol - as such devices cannot be automatically added. Instead, configure the device in the <a href="http://www.rfxcom.com/downloads.htm">rfxmngr</a> tool. Make a note of the assigned ID and Unit Code and then add a device to the configuration with the following id <code class="highlighter-rouge">071a0000[id][unit_code]</code>. Eg, if the id was <code class="highlighter-rouge">0a</code> <code class="highlighter-rouge">00</code> <code class="highlighter-rouge">01</code>, and the unit code was <code class="highlighter-rouge">01</code> then the fully qualified id would be <code class="highlighter-rouge">071a00000a000101</code>.</p>
<h5>Common</h5>
<p>Example configuration:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">rollershutter</span>:
<span class="key">platform</span>: <span class="string"><span class="content">rfxtrx</span></span>
<span class="key">automatic_add</span>: <span class="string"><span class="content">False</span></span>
<span class="key">signal_repetitions</span>: <span class="string"><span class="content">2</span></span>
<span class="key">devices</span>:
<span class="key">0b1100ce3213c7f210010f70</span>: <span class="comment"># Siemens/LightwaveRF</span>
<span class="key">name</span>: <span class="string"><span class="content">Bedroom Shutter</span></span>
<span class="key">070a00000a000101</span>: <span class="comment"># RFY</span>
<span class="key">name</span>: <span class="string"><span class="content">Bathroom Shutter</span></span>
</pre></div>
</div>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<span class="s">rollershutter</span><span class="pi">:</span>
<span class="s">platform</span><span class="pi">:</span> <span class="s">rfxtrx</span>
<span class="s">automatic_add</span><span class="pi">:</span> <span class="s">False</span>
<span class="s">signal_repetitions</span><span class="pi">:</span> <span class="s">2</span>
<span class="s">devices</span><span class="pi">:</span>
<span class="s">0b1100ce3213c7f210010f70</span><span class="pi">:</span> <span class="c1"># Siemens/LightwaveRF</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">Bedroom Shutter</span>
<span class="s">070a00000a000101</span><span class="pi">:</span> <span class="c1"># RFY</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">Bathroom Shutter</span>
</code></pre>
</div>
<p>Configuration variables:</p>