Site updated at 2017-10-01 21:04:02 UTC

This commit is contained in:
Travis CI 2017-10-01 21:04:03 +00:00
parent 43a6ed1343
commit ed7f27a34b
30 changed files with 90 additions and 72 deletions

View file

@ -76,6 +76,16 @@
<hr class="divider">
<p>The <code class="highlighter-rouge">android_ip_webcam</code> binary sensor platform lets you observe the motion state of <a href="https://play.google.com/store/apps/details?id=com.pas.webcam">Android IP webcam</a> sensors through Home Assistant.</p>
<p>Devices will be configured automatically. Please refer to the <a href="/components/android_ip_webcam/">component</a> configuration on how to setup.</p>
<h2><a class="title-link" name="examples" href="#examples"></a> Examples</h2>
<p>You can also setup the binary motion sensor with the following script:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">binary_sensor</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">rest</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">Kitchen Motion</span>
<span class="s">sensor_class</span><span class="pi">:</span> <span class="s">motion</span>
<span class="s">resource</span><span class="pi">:</span> <span class="s">http://IP:8080/sensors.json?sense=motion_active</span>
<span class="s">value_template</span><span class="pi">:</span> <span class="s1">'</span><span class="s">{{</span><span class="nv"> </span><span class="s">value_json.motion_active.data[0][1][0]</span><span class="nv"> </span><span class="s">|</span><span class="nv"> </span><span class="s">round(0)</span><span class="nv"> </span><span class="s">}}'</span>
</code></pre>
</div>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">

View file

@ -94,6 +94,15 @@
<p class="note">
There is a <a href="https://github.com/shazow/urllib3/issues/800" target="_blank">known issue in urllib3</a> that you will get error messages in your logs like <code>[StartBoundaryNotFoundDefect(), MultipartInvariantViolationDefect()], unparsed data: ''</code> but the component still works fine. You can ignore the messages.
</p>
<h2><a class="title-link" name="examples" href="#examples"></a> Examples</h2>
<p>Example of using a DCS-930L Wireless N Network Camera from D-Link:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">camera</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">mjpeg</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">Livingroom Camera</span>
<span class="s">still_image_url</span><span class="pi">:</span> <span class="s">http://IP/image.jpg</span>
<span class="s">mjpeg_url</span><span class="pi">:</span> <span class="s">http://IP/video/mjpg.cgi</span>
</code></pre>
</div>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">

View file

@ -390,13 +390,11 @@ temporary target temperature. The particular modes available depend on the clima
</div>
<h4><a class="title-link" name="customization" href="#customization"></a> Customization</h4>
<p>The step for the setpoint can be adjusted (default to 0,5 increments) by adding the following line into configuration</p>
<p>'yaml
customize:</p>
<ul>
<li>entity_id
target_temp_step: 1
</li>
</ul>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">customize</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">entity_id</span>
<span class="s">target_temp_step</span><span class="pi">:</span> <span class="s">1</span>
</code></pre>
</div>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">

View file

@ -117,7 +117,7 @@
<ul>
<li><strong>view</strong> (<em>Optional</em>): If yes then the entry will be shown as a view (tab) at the top.</li>
<li><strong>name</strong> (<em>Optional</em>): Name of the group.</li>
<li><strong>icon</strong> (<em>Optional</em>): If the group is a view, this icon will show at the top in the frontend instead of the name. If the group is a view and both name and icon have been specified, the icon will appear at the top of the fronted and the name will be displayed as the mouse-over text. If its not a view, then the icon shows when this group is used in another group.</li>
<li><strong>icon</strong> (<em>Optional</em>): If the group is a view, this icon will show at the top in the frontend instead of the name. If the group is a view and both name and icon have been specified, the icon will appear at the top of the frontend and the name will be displayed as the mouse-over text. If its not a view, then the icon shows when this group is used in another group.</li>
<li><strong>control</strong> (<em>Optional</em>): Set value to <code class="highlighter-rouge">hidden</code>. If hidden then the group switch will be hidden.</li>
<li><strong>entities</strong> (<em>Required</em>): array or comma delimited string, list of entities to group.</li>
</ul>

View file

@ -76,6 +76,7 @@
<hr class="divider">
<p>The <code class="highlighter-rouge">android_ip_webcam</code> sensor platform lets you observe states of <a href="https://play.google.com/store/apps/details?id=com.pas.webcam">Android IP webcam</a> sensors through Home Assistant.</p>
<p>Devices will be configured automatically. Please refer to the <a href="/components/android_ip_webcam/">component</a> configuration on how to setup.</p>
<p>You can setup your own sensors by examining the JSON file from the webcam server: http://IP:8080/sensors.json</p>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">