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,28 +89,26 @@
<hr class="divider">
<p>The <code>tellstick</code> sensor platform allows you to get current meteorological data from a <a href="http://www.telldus.se/products/tellstick">TellStick</a> device.</p>
<p>The <code class="highlighter-rouge">tellstick</code> sensor platform allows you to get current meteorological data from a <a href="http://www.telldus.se/products/tellstick">TellStick</a> device.</p>
<p>To use your TellStick device, you first have to set up your <a href="https://home-assistant.io/components/tellstick/">Tellstick hub</a> and then add the following to your <code>configuration.yaml</code> file:</p>
<p>To use your TellStick device, you first have to set up your <a href="https://home-assistant.io/components/tellstick/">Tellstick hub</a> and then add the following to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">sensor</span>:
<span class="key">platform</span>: <span class="string"><span class="content">tellstick</span></span>
<span class="key">135</span>: <span class="string"><span class="content">Outside</span></span>
<span class="key">21</span>: <span class="string"><span class="content">Inside</span></span>
<span class="key">only_named</span>: <span class="string"><span class="content">True</span></span>
<span class="key">temperature_scale</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">°C</span><span class="delimiter">&quot;</span></span>
<span class="key">datatype_mask</span>: <span class="string"><span class="content">1</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">sensor</span><span class="pi">:</span>
<span class="s">platform</span><span class="pi">:</span> <span class="s">tellstick</span>
<span class="s">135</span><span class="pi">:</span> <span class="s">Outside</span>
<span class="s">21</span><span class="pi">:</span> <span class="s">Inside</span>
<span class="s">only_named</span><span class="pi">:</span> <span class="s">True</span>
<span class="s">temperature_scale</span><span class="pi">:</span> <span class="s2">"</span><span class="s">°C"</span>
<span class="s">datatype_mask</span><span class="pi">:</span> <span class="s">1</span>
</code></pre>
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>ID: Name</strong> <em>Optional</em>: Entry for a sensor with the name for it and its ID.</li>
<li><strong>only_named</strong> <em>Optional</em>: Only show the named sensors. Set to <code>True</code> to hide sensors.</li>
<li><strong>only_named</strong> <em>Optional</em>: Only show the named sensors. Set to <code class="highlighter-rouge">True</code> to hide sensors.</li>
<li><strong>temperature_scale</strong> <em>Optional</em>: The scale of the temperature value.</li>
<li><strong>datatype_mask</strong> <em>Optional</em>: Mask to determine which sensor values to show based on. Please check the <a href="https://tellcore-py.readthedocs.org/en/v1.1.2/constants.html#module-tellcore.constants">TellCore tellcore.constants documentation</a> for details.</li>
</ul>