Site updated at 2016-12-04 19:23:53 UTC

This commit is contained in:
Travis CI 2016-12-04 19:23:54 +00:00
parent 01f0c88598
commit 0649dddca7
83 changed files with 709 additions and 57 deletions

View file

@ -99,16 +99,25 @@ entities. The driving use case behind this functionality is to allow Home Assist
<h3><a class="title-link" name="configuration" href="#configuration"></a> Configuration</h3>
<p>To enable the emulated Hue bridge, add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
<p>To enable the emulated Hue bridge, add one of the following configs to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Example configuration.yaml entry</span>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Amazon Echo example configuration.yaml entry</span>
<span class="s">emulated_hue</span><span class="pi">:</span>
</code></pre>
</div>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Google Home example configuration.yaml entry</span>
<span class="s">emulated_hue</span><span class="pi">:</span>
<span class="s">type</span><span class="pi">:</span> <span class="s">google_home</span>
<span class="c1"># Google Home does not work on different ports.</span>
<span class="s">listen_port</span><span class="pi">:</span> <span class="s">80</span>
</code></pre>
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>type</strong> (<em>Optional</em>): The type of assistant who we are emulated for. Either <code class="highlighter-rouge">alexa</code> or <code class="highlighter-rouge">google_home</code>.</li>
<li><strong>host_ip</strong> (<em>Optional</em>): The IP address that your Home Assistant installation is running on. If you do not specify this option, the component will attempt to determine the IP address on its own.</li>
<li><strong>listen_port</strong> (<em>Optional</em>): The port the Hue bridge API web server will run on. If not specified, this defaults to 8300. This can be any free port on your system.</li>
<li>