Site updated at 2017-12-17 16:27:07 UTC

This commit is contained in:
Travis CI 2017-12-17 16:27:07 +00:00
parent 4e546d5869
commit db3021af91
919 changed files with 15842 additions and 3639 deletions

View file

@ -96,6 +96,7 @@
<li><strong>cold_tolerance</strong> (<em>Optional</em>): Set a minimum amount of difference between the temperature read by the sensor specified in the <em>target_sensor</em> option and the target temperature that must change prior to being switched on. For example, if the target temperature is 25 and the tolerance is 0.5 the heater will start when the sensor equals or goes below 24.5.</li>
<li><strong>hot_tolerance</strong> (<em>Optional</em>): Set a minimum amount of difference between the temperature read by the sensor specified in the <em>target_sensor</em> option and the target temperature that must change prior to being switched off. For example, if the target temperature is 25 and the tolerance is 0.5 the heater will stop when the sensor equals or goes above 25.5.</li>
<li><strong>keep_alive</strong> (<em>Optional</em>): Set a keep-alive interval. If set, the switch specified in the <em>heater</em> option will be triggered every time the interval elapses. Use with heaters and A/C units that shut off if they dont receive a signal from their remote for a while.</li>
<li><strong>initial_operation_mode</strong> (<em>Optional</em>): Set the initial operation mode. Valid values are <code class="highlighter-rouge">off</code> or <code class="highlighter-rouge">auto</code>. Value has to be double quoted. If this parameter is not set, it is preferable to set a <em>keep_alive</em> value. This is helpful to align any discrepancies between <em>generic_thermostat</em> and <em>heater</em> state.</li>
</ul>
<p>A full configuration example looks like the one below. <code class="highlighter-rouge">min_cycle_duration</code> and <code class="highlighter-rouge">keep_alive</code> must contain at least one of the following entries: <code class="highlighter-rouge">days:</code>, <code class="highlighter-rouge">hours:</code>, <code class="highlighter-rouge">minutes:</code>, <code class="highlighter-rouge">seconds:</code> or <code class="highlighter-rouge">milliseconds:</code>.</p>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="c1"># Full example configuration.yaml entry</span>
@ -113,6 +114,7 @@
<span class="s">seconds</span><span class="pi">:</span> <span class="s">5</span>
<span class="s">keep_alive</span><span class="pi">:</span>
<span class="s">minutes</span><span class="pi">:</span> <span class="s">3</span>
<span class="s">initial_operation_mode</span><span class="pi">:</span> <span class="s2">"</span><span class="s">off"</span>
</code></pre>
</div>
</article>