Site updated at 2017-10-09 09:09:51 UTC
This commit is contained in:
parent
00fe2e34db
commit
a019ec5248
30 changed files with 74 additions and 74 deletions
|
@ -141,8 +141,8 @@ Be careful not to forget to place <code class="highlighter-rouge">customize</cod
|
|||
<td>Set to <code class="highlighter-rouge">true</code> to hide the entity from <code class="highlighter-rouge">HomeBridge</code>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">emulated_hue</code></td>
|
||||
<td>Set to <code class="highlighter-rouge">false</code> to hide the entity from emulated_hue.</td>
|
||||
<td><code class="highlighter-rouge">emulated_hue_hidden</code></td>
|
||||
<td>Set to <code class="highlighter-rouge">true</code> to hide the entity from <code class="highlighter-rouge">emulated_hue</code>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">entity_picture</code></td>
|
||||
|
|
|
@ -186,7 +186,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
<h3><a class="title-link" name="event-platform_discovered" href="#event-platform_discovered"></a> Event <code class="highlighter-rouge">platform_discovered</code></h3>
|
||||
<p>Event <code class="highlighter-rouge">platform_discovered</code> is fired when a new platform has been discovered by the discovery component.</p>
|
||||
<p>Event <code class="highlighter-rouge">platform_discovered</code> is fired when a new platform has been discovered by the <a href="/components/discovery/"><code class="highlighter-rouge">discovery</code></a> component.</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -197,7 +197,7 @@
|
|||
<tbody>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">service</code></td>
|
||||
<td>The service that is discovered. Example: <code class="highlighter-rouge">zwave</code>.</td>
|
||||
<td>The platform that is discovered. Example: <code class="highlighter-rouge">zwave</code>.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code class="highlighter-rouge">discovered</code></td>
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
</h1>
|
||||
</header>
|
||||
<hr class="divider">
|
||||
<p>Any component that is based on the entity component allows various extra options to be set per platform.</p>
|
||||
<p>Some components or platforms (those that are based on the <a href="https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/helpers/entity.py">entity</a> class) allows various extra options to be set.</p>
|
||||
<h3><a class="title-link" name="entity-namespace" href="#entity-namespace"></a> Entity namespace</h3>
|
||||
<p>By setting an entity namespace, all entities will be prefixed with that namespace. That way <code class="highlighter-rouge">light.bathroom</code> can become <code class="highlighter-rouge">light.holiday_house_bathroom</code>.</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
|
||||
|
@ -85,7 +85,7 @@
|
|||
</code></pre>
|
||||
</div>
|
||||
<h3><a class="title-link" name="scan-interval" href="#scan-interval"></a> Scan Interval</h3>
|
||||
<p>Platforms that require polling will be polled in an interval specified by the main component. For example a light will check every 30 seconds for a changed state. It is possible to overwrite this scan interval for any platform that is being polled by specifying a <code class="highlighter-rouge">scan_interval</code> config key. In the example below we setup the Philips Hue lights but tell Home Assistant to poll the devices every 10 seconds instead of the default 30 seconds.</p>
|
||||
<p>Platforms that require polling will be polled in an interval specified by the main component. For example a light will check every 30 seconds for a changed state. It is possible to overwrite this scan interval for any platform that is being polled by specifying a <code class="highlighter-rouge">scan_interval</code> configuration key. In the example below we setup the Philips Hue lights but tell Home Assistant to poll the devices every 10 seconds instead of the default 30 seconds.</p>
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry to poll Hue lights every 10 seconds.</span>
|
||||
<span class="s">light</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">hue</span>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue