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,23 +89,21 @@
<hr class="divider">
<p>The <code>heatmiser</code> thermostat platform let you control <a href="http://www.heatmisershop.co.uk/heatmiser-slimline-programmable-room-thermostat/">Heatmiser DT/DT-E/PRT/PRT-E</a> thermostats from Heatmiser. The module itself is currently setup to work over a RS232 -&gt; RS485 converter, therefore it connects over IP.</p>
<p>The <code class="highlighter-rouge">heatmiser</code> thermostat platform let you control <a href="http://www.heatmisershop.co.uk/heatmiser-slimline-programmable-room-thermostat/">Heatmiser DT/DT-E/PRT/PRT-E</a> thermostats from Heatmiser. The module itself is currently setup to work over a RS232 -&gt; RS485 converter, therefore it connects over IP.</p>
<p>Further work would be required to get this setup to connect over Wifi, but the HeatmiserV3 python module being used is a full implementation of the V3 protocol. If you would like to contribute to making this work over wifi, please contact @andylockran on github.</p>
<p>To set it up, add the following information to your <code>configuration.yaml</code> file:</p>
<p>To set it up, add the following information to your <code class="highlighter-rouge">configuration.yaml</code> file:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="key">thermostat</span>:
<span class="key">platform</span>: <span class="string"><span class="content">heatmiser</span></span>
<span class="key">ipaddress</span>: <span class="string"><span class="content">YOUR_IPADDRESS</span></span>
<span class="key">port</span>: <span class="string"><span class="content">YOUR_PORT</span></span>
<span class="key">tstats</span>:
<span class="key">1</span>:
<span class="key">id</span>: <span class="string"><span class="content">THERMOSTAT_ID</span></span>
<span class="key">name</span>: <span class="string"><span class="content">THERMOSTAT_NAME</span></span>
</pre></div>
</div>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">thermostat</span><span class="pi">:</span>
<span class="s">platform</span><span class="pi">:</span> <span class="s">heatmiser</span>
<span class="s">ipaddress</span><span class="pi">:</span> <span class="s">YOUR_IPADDRESS</span>
<span class="s">port</span><span class="pi">:</span> <span class="s">YOUR_PORT</span>
<span class="s">tstats</span><span class="pi">:</span>
<span class="s">1</span><span class="pi">:</span>
<span class="s">id</span><span class="pi">:</span> <span class="s">THERMOSTAT_ID</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">THERMOSTAT_NAME</span>
</code></pre>
</div>
<p>A single interface can handle up to 32 connected devices.</p>