Site updated at 2017-01-30 07:40:05 UTC

This commit is contained in:
Travis CI 2017-01-30 07:40:05 +00:00
parent 54406634be
commit 5dd32c1a31
27 changed files with 52 additions and 47 deletions

View file

@ -139,7 +139,7 @@ This can be achieved using the <code class="highlighter-rouge">homeassistant.com
<p>Add your custom device specific code to the <code class="highlighter-rouge">setup_platform</code> method in <code class="highlighter-rouge">light/myflashyhub.py</code> and <code class="highlighter-rouge">switch/myflashyhub</code>.</p>
<div class="language-python highlighter-rouge"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">homeassistant.components.myflashyhub</span> <span class="kn">as</span> <span class="nn">myflashyhub</span>
<div class="language-python highlighter-rouge"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">custom_components.myflashyhub</span> <span class="kn">as</span> <span class="nn">myflashyhub</span>
<span class="c"># 'switch' will receive discovery_info={'optional': 'arguments'} </span>
<span class="c"># as passed in above. 'light' will receive discovery_info=None</span>