Site updated at 2017-11-12 10:06:54 UTC

This commit is contained in:
Travis CI 2017-11-12 10:06:54 +00:00
parent 9b986aa207
commit b0c4bebd4c
230 changed files with 2321 additions and 1823 deletions

313
atom.xml
View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2017-11-12T08:16:24+00:00</updated>
<updated>2017-11-12T09:58:41+00:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Home Assistant]]></name>
@ -13,6 +13,113 @@
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Secure remote access to Home Assistant using Tor]]></title>
<link href="https://home-assistant.io/blog/2017/11/12/tor/"/>
<updated>2017-11-12T08:00:00+00:00</updated>
<id>https://home-assistant.io/blog/2017/11/12/tor</id>
<content type="html"><![CDATA[<p>Routers and gateways provided by broadband internet providers are very often limited regarding features and configuration possibilities. Most of these limitations affect the opportunities that allow users to set up port-forwarding, DMZ, and DHCP reservations since the suppliers figured that average user does not want (or should not) deal with these. Making your Home Assistant instance available remotely (and securely), in this case, becomes more difficult. Are you one of those unlucky ones?</p>
<p>There are a couple of options available to achieve a remote (and secure) accessible Home Assistant instance. However, almost all of them require you to: open one or more ports on your router, expose a public IP address, and require you to reserve a fixed IP in your DHCP server (or set up a static IP address). Examples of these are:</p>
<ul>
<li>Combination of <a href="/components/duckdns/">DuckDNS</a> (or similar), <a href="/docs/ecosystem/certificates/lets_encrypt/">Lets Encrypt</a> (SSL), DHCP reservation, and forwarding a port to your device running Home Assistant.</li>
<li>Setup a VPN, which often requires more hardware and software. Additionally, it also requires port-forwarding, DHCP reservation and most likely <a href="/components/duckdns/">DuckDNS</a> (or similar).</li>
<li><a href="/blog/2017/11/02/secure-shell-tunnel/">SSH tunnel-ing</a>. Which still requires port-forwarding, DHCP reservation and most likely (yeah, youve guessed it) <a href="/components/duckdns/">DuckDNS</a> (or similar).</li>
</ul>
<p>There is, however, another option available that most people do not realize: <a href="https://www.torproject.org">Tor</a>. <a href="https://www.torproject.org">Tor</a> offers a capability that they refer to as <a href="https://www.torproject.org/docs/hidden-services.html.en">Tors Hidden Services</a>, which allows you to securely access your Home Assistant installation <em>without</em> the need for all these things. No need to forward and open ports, no need to expose your public IP, no DNS entry, no need for SSL certificates, and you do not have to assign a fixed IP to the device running your Home Assistant.</p>
<p>The most amazing part? It is super easy to set up!</p>
<!--more-->
<h2><a class="title-link" name="setting-up-tor" href="#setting-up-tor"></a> Setting up Tor</h2>
<p>Our <a href="/docs/ecosystem/tor/">documentation</a> provides an detailled guide about seting up a <a href="https://www.torproject.org/docs/hidden-services.html.en">Tors Hidden Service</a>. The setup is straight-forward:</p>
<ol>
<li>Install Tor. On a Debian-based system: <code class="highlighter-rouge">$ sudo apt-get install tor</code>. On Fedora: <code class="highlighter-rouge">$ sudo dnf install tor</code></li>
<li>
<p>Modify Tors main configuration file <code class="highlighter-rouge">/etc/tor/torrc</code> to include the following lines:</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code> <span class="c">############### This section is just for location-hidden services ###</span>
<span class="c">## Once you have configured a hidden service, you can look at the</span>
<span class="c">## contents of the file ".../hidden_service/hostname" for the address</span>
<span class="c">## to tell people.</span>
...
HiddenServiceDir /var/lib/tor/homeassistant/
HiddenServicePort 80 127.0.0.1:8123
...
</code></pre>
</div>
</li>
<li>Restart Tor: <code class="highlighter-rouge">$ sudo systemctl restart tor</code></li>
<li>
<p>The Tor-generated hostname file contains the hostname you need to access your installation.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code> <span class="nv">$ </span>sudo cat /var/lib/tor/homeassistant/hostname
abcdef1234567890.onion
</code></pre>
</div>
</li>
</ol>
<h2><a class="title-link" name="tor-add-on-for-hassio" href="#tor-add-on-for-hassio"></a> Tor add-on for Hass.io</h2>
<p><a href="https://github.com/frenck">Franck Nijhof (@frenck)</a> created the <a href="https://github.com/hassio-addons/addon-tor">Tor add-on</a> for <a href="/hassio/">Hass.io</a>. This add-on makes the installation and the setup extremely simple. Go to the <strong>Hass.io</strong> panel, then to the <strong>Store</strong>, copy <code class="highlighter-rouge">https://github.com/hassio-addons/repository</code> into the text box of <strong>Add-On Repositories</strong> and save it.</p>
<p>A new entry <strong>Tor</strong> will show-up in the list of add-ons. Click on it to install it. The configuration is done in <strong>Options</strong>. Please refer to the <a href="https://github.com/hassio-addons/addon-tor#configuration">Configuration documentation</a> for further details. A possible configuration could look like the sample below (which is the default configuration).</p>
<div class="language-json highlighter-rouge"><pre class="highlight"><code><span class="p">{</span><span class="w">
</span><span class="nt">"log_level"</span><span class="p">:</span><span class="w"> </span><span class="s2">"info"</span><span class="p">,</span><span class="w">
</span><span class="nt">"socks"</span><span class="p">:</span><span class="w"> </span><span class="kc">false</span><span class="p">,</span><span class="w">
</span><span class="nt">"hidden_services"</span><span class="p">:</span><span class="w"> </span><span class="kc">true</span><span class="p">,</span><span class="w">
</span><span class="nt">"stealth"</span><span class="p">:</span><span class="w"> </span><span class="kc">false</span><span class="p">,</span><span class="w">
</span><span class="nt">"client_names"</span><span class="p">:</span><span class="w"> </span><span class="p">[],</span><span class="w">
</span><span class="nt">"ports"</span><span class="p">:</span><span class="w"> </span><span class="p">[</span><span class="w">
</span><span class="s2">"8123:80"</span><span class="w">
</span><span class="p">]</span><span class="w">
</span><span class="p">}</span><span class="w">
</span></code></pre>
</div>
<p>When you are done, press <strong>Save</strong> and then <strong>Start</strong>. In the <strong>Logs</strong> section, you can see what the add-on is doing. Watch out for an entry like the one below, which will tell you your hostname on the Tor network.</p>
<div class="language-bash highlighter-rouge"><pre class="highlight"><code>INFO: -----------------------------------------------------------
INFO: Your Home Assistant instance is available on Tor!
INFO: Address: abcdef1234567890.onion
INFO: -----------------------------------------------------------
</code></pre>
</div>
<p>Dont worry if you missed it, restarting the add-on will display it again. The details are also stored and available in the <code class="highlighter-rouge">/ssl/tor/hidden_service/hostname</code> file.</p>
<h2><a class="title-link" name="tor-clients" href="#tor-clients"></a> Tor clients</h2>
<p>To access you Home Assistant via the Tor Hidden Service, you will need a Tor client. There are multiple clients, for different devices and platforms, available. The <a href="https://www.torproject.org/projects/torbrowser.html.en">Tor Browser</a> is by far the simplest option, which is available for Windows, MacOS &amp; Linux.</p>
<p>Simply download and install the <a href="https://www.torproject.org/projects/torbrowser.html.en">Tor Browser</a>, start it, and enter the “dot onion” address youve gained from the earlier steps (<code class="highlighter-rouge">abcdef1234567890.onion</code> in this case). Voila!</p>
<p>Some other clients:</p>
<ul>
<li><a href="https://guardianproject.info/apps/orbot/">Orbot</a> for Android</li>
<li><a href="https://play.google.com/store/apps/details?id=info.guardianproject.orfox&amp;hl=nl">Orfox</a> for Android</li>
<li><a href="https://mike.tig.as/onionbrowser/">Onion Browser</a> for iOS</li>
</ul>
<h2><a class="title-link" name="cranking-up-security" href="#cranking-up-security"></a> Cranking up security</h2>
<p>The setup described in this blog post is easy and relatively secure, but anyone who knows your <code class="highlighter-rouge">.onion</code> address can still connect to your Home Assistant instance (Remember to use passwords!). With all of the <a href="https://blog.torproject.org/quick-simple-guide-tor-and-internet-things-so-far">discussion</a> about putting your IoT on the Tor Network, maybe you want to add an extra layer of defense, especially if youre going to be the only one that uses it. Tor offers an additional layer of security, called “Hidden Service Authentication”, usually referred to as “Stealth”-mode.</p>
<p>This “Stealth”-mode adds an extra layer of security to your Hidden Service by only responding to a client that passes a unique secret cookie as it connects. Obviously, this requires additional configuration on the Tor client applications.</p>
<p>Additional information can be found in the <a href="/docs/ecosystem/tor/">Tor documentation</a> and the <a href="https://github.com/hassio-addons/addon-tor">Tor add-on repository</a>, including how to setup the “Stealth”-mode. The Tor Project itself provides details about a variaty of topics in their <a href="https://www.torproject.org/docs/documentation.html.en">documentation</a>.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Home Assistant and The Things Network (TTN)]]></title>
<link href="https://home-assistant.io/blog/2017/11/10/ttn-with-mqtt/"/>
@ -1984,210 +2091,6 @@ Screenshot of the new customize editor.
<li>Refactor mysensors callback and add validation (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/9069">#9069</a>) (<a href="https://home-assistant.io/components/mysensors/">mysensors docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.mysensors/">binary_sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/climate.mysensors/">climate.mysensors docs</a>) (<a href="https://home-assistant.io/components/cover.mysensors/">cover.mysensors docs</a>) (<a href="https://home-assistant.io/components/device_tracker.mysensors/">device_tracker.mysensors docs</a>) (<a href="https://home-assistant.io/components/light.mysensors/">light.mysensors docs</a>) (<a href="https://home-assistant.io/components/notify.mysensors/">notify.mysensors docs</a>) (<a href="https://home-assistant.io/components/sensor.mysensors/">sensor.mysensors docs</a>) (<a href="https://home-assistant.io/components/switch.mysensors/">switch.mysensors docs</a>) (breaking change)</li>
</ul>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[0.51: Massive history speed up, finished automation editor and official vacuum cleaner support]]></title>
<link href="https://home-assistant.io/blog/2017/08/12/release-51/"/>
<updated>2017-08-12T00:11:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/08/12/release-51</id>
<content type="html"><![CDATA[<p><a href="/components/#version/0.51"><img src="/images/blog/2017-08-0.51/components.png" style="border: 0;box-shadow: none;" /></a></p>
<p class="note warning">This release has to do a one time database migration which can take a long time on big databases (20 minutes). During this time the frontend will not work. Do not stop Home Assistant while it is in progress.</p>
<p>Release 0.51 is around the corner and it contains some really great updates.</p>
<h2><a class="title-link" name="database-speed-up" href="#database-speed-up"></a> Database speed up</h2>
<p>The first one is more amazing database updates <a href="https://github.com/home-assistant/home-assistant/pull/8748">#8748</a> by <a href="https://github.com/OverloadUT">@OverloadUT</a>. Every query that has been tested executes in well under 1 second, even on a RPi using MySQL with 6 million rows and around 300 entities. This is true even when youre getting an unrealistically huge date range!</p>
<p>Updating the database will take some time when you start Home Assistant. During that time, the Home Assistant frontend is not accessible. Please let it complete and do not turn Home Assistant off.</p>
<h2><a class="title-link" name="frontend-update" href="#frontend-update"></a> Frontend update</h2>
<p>We have finished the migration of our frontend to be powered by Polymer 2. This has given us a big speed boost on Safari/iOS devices and has fixed a wide range of bugs.</p>
<p>We have also finished the automation editor. All triggers and actions are now implemented and so are most conditions (missing are <code class="highlighter-rouge">and</code>, <code class="highlighter-rouge">or</code>). The automation editor is also no longer Chrome only, it can now also be used in Safari.</p>
<p>Another change to the frontend is that we have reorganized the panels. The Z-Wave and automation configuration panels have been merged into the configuration panel.</p>
<div class="videoWrapper">
<iframe src="https://www.youtube.com/embed/f3isVVpmiq4" frameborder="0" allowfullscreen=""></iframe>
</div>
<h2><a class="title-link" name="vacuum-cleaners" href="#vacuum-cleaners"></a> Vacuum cleaners</h2>
<p>As we have seen more vacuum cleaners land in Home Assistant, it was time to create an official component for them. Thats why <a href="https://github.com/azogue">@azogue</a> introduced the new vacuum cleaner component in <a href="https://github.com/home-assistant/home-assistant/pull/8623">#8623</a>. This allows first class integration of vacuum cleaners in Home Assistant. Out of the box we will have Dyson, Xiamo and Roomba as supported platforms.</p>
<h2><a class="title-link" name="new-platforms" href="#new-platforms"></a> New Platforms</h2>
<ul>
<li>Added Lutron Caseta Scene Support (<a href="https://github.com/809694+kfcook">@809694+kfcook</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8690">#8690</a>) (<a href="https://home-assistant.io/components/lutron_caseta/">lutron_caseta docs</a>) (<a href="https://home-assistant.io/components/scene.lutron_caseta/">scene.lutron_caseta docs</a>) (new-platform)</li>
<li>New media_player platform for Russound devices using the RIO protocol (<a href="https://github.com/wickerwaka">@wickerwaka</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8448">#8448</a>) (<a href="https://home-assistant.io/components/media_player.russound_rio/">media_player.russound_rio docs</a>) (new-platform)</li>
<li>New component: bluesound (<a href="https://github.com/thrawnarn">@thrawnarn</a> - <a href="https://github.com/home-assistant/home-assistant/pull/7192">#7192</a>) (<a href="https://home-assistant.io/components/media_player.bluesound/">media_player.bluesound docs</a>) (new-platform)</li>
<li>Add mochad light component (<a href="https://github.com/mtreinish">@mtreinish</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8476">#8476</a>) (<a href="https://home-assistant.io/components/light.mochad/">light.mochad docs</a>) (new-platform)</li>
<li>geizhals sensor component (<a href="https://github.com/JulianKahnert">@JulianKahnert</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8458">#8458</a>) (<a href="https://home-assistant.io/components/sensor.geizhals/">sensor.geizhals docs</a>) (new-platform)</li>
<li>Xiaomi vacuum as platform of new <code class="highlighter-rouge">vacuum</code> component derived from ToggleEntity, and services (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8623">#8623</a>) (breaking change) (new-platform)</li>
<li>Wi-Fi enabled Roomba support (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8825">#8825</a>) (<a href="https://home-assistant.io/components/vacuum.roomba/">vacuum.roomba docs</a>) (new-platform)</li>
<li>Add support to Dyson 360 Eye robot vacuum using new vacuum platform (<a href="https://github.com/CharlesBlonde">@CharlesBlonde</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8852">#8852</a>) (<a href="https://home-assistant.io/components/dyson/">dyson docs</a>) (<a href="https://home-assistant.io/components/vacuum/">vacuum docs</a>) (<a href="https://home-assistant.io/components/fan.dyson/">fan.dyson docs</a>) (<a href="https://home-assistant.io/components/sensor.dyson/">sensor.dyson docs</a>) (<a href="https://home-assistant.io/components/vacuum.dyson/">vacuum.dyson docs</a>) (new-platform)</li>
<li>Add Initial Mailbox panel and sensor (<a href="https://github.com/PhracturedBlue">@PhracturedBlue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8233">#8233</a>) (<a href="https://home-assistant.io/components/asterisk_mbox/">asterisk_mbox docs</a>) (new-platform)</li>
<li>Add Leviton Decora Smart WiFi Device Platform (<a href="https://github.com/tlyakhov">@tlyakhov</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8529">#8529</a>) (<a href="https://home-assistant.io/components/light.decora_wifi/">light.decora_wifi docs</a>) (new-platform)</li>
<li>Add RainMachine switch platform (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8827">#8827</a>) (<a href="https://home-assistant.io/components/switch.rainmachine/">switch.rainmachine docs</a>) (new-platform)</li>
<li>Add new device tracker for Huawei Routers. (<a href="https://github.com/abmantis">@abmantis</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8488">#8488</a>) (<a href="https://home-assistant.io/components/device_tracker.huawei_router/">device_tracker.huawei_router docs</a>) (new-platform)</li>
<li>Add Shodan sensor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8902">#8902</a>) (<a href="https://home-assistant.io/components/sensor.shodan/">sensor.shodan docs</a>) (new-platform)</li>
</ul>
<h2><a class="title-link" name="release-0511---august-12" href="#release-0511---august-12"></a> Release 0.51.1 - August 12</h2>
<ul>
<li>Fixed a bug in the automation editor that would break if no conditions available in the config file. (<a href="https://github.com/balloob">@balloob</a>)</li>
</ul>
<h2><a class="title-link" name="release-0512---august-14" href="#release-0512---august-14"></a> Release 0.51.2 - August 14</h2>
<ul>
<li>Fix zwave power_consumption attribute (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8968">#8968</a>) (<a href="https://home-assistant.io/components/zwave/">zwave docs</a>)</li>
<li>Turn foscam verbose mode off (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8967">#8967</a>) (<a href="https://home-assistant.io/components/camera.foscam/">camera.foscam docs</a>)</li>
<li>fix stack trace in pushbullet (<a href="https://github.com/Danielhiversen">@Danielhiversen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8965">#8965</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Harmoney remote: Fix call to ha_send_commands (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8956">#8956</a>) (<a href="https://home-assistant.io/components/remote.harmony/">remote.harmony docs</a>)</li>
<li>fix DeviceException handling when updating xiaomi vacuum (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8954">#8954</a>) (<a href="https://home-assistant.io/components/vacuum.xiaomi/">vacuum.xiaomi docs</a>)</li>
<li>Sabnzbd: do not assume discovery info is a dict (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8951">#8951</a>) (<a href="https://home-assistant.io/components/sensor.sabnzbd/">sensor.sabnzbd docs</a>)</li>
<li>Fix login button (<a href="https://github.com/balloob">@balloob</a>)</li>
<li>Add workaround for broken toggles in Safari (<a href="https://github.com/balloob">@balloob</a>)</li>
<li>Fix weblink opening twice (<a href="https://github.com/azogue">@azogue</a>)</li>
</ul>
<h2><a class="title-link" name="if-you-need-help" href="#if-you-need-help"></a> If you need help…</h2>
<p>…dont hesitate to use our very active <a href="https://community.home-assistant.io/">forums</a> or join us for a little <a href="https://discord.gg/c5DvZ4e">chat</a>. The release notes have comments enabled but its preferred if you use the former communication channels. Thanks.</p>
<h2><a class="title-link" name="reporting-issues" href="#reporting-issues"></a> Reporting Issues</h2>
<p>Experiencing issues introduced by this release? Please report them in our <a href="https://github.com/home-assistant/home-assistant/issues">issue tracker</a>. Make sure to fill in all fields of the issue template.</p>
<!--more-->
<h2><a class="title-link" name="breaking-changes" href="#breaking-changes"></a> Breaking Changes</h2>
<ul>
<li>Efergy sensors: change units from KW to W (<a href="https://github.com/emlt">@emlt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8761">#8761</a>) (<a href="https://home-assistant.io/components/sensor.efergy/">sensor.efergy docs</a>) (breaking change)</li>
<li>Xiaomi vacuum is now a platform of new <code class="highlighter-rouge">vacuum</code> component derived from ToggleEntity, and services (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8623">#8623</a>) (breaking change) (new-platform)</li>
</ul>
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">vacuum</span><span class="pi">:</span>
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">xiaomi</span>
<span class="s">name</span><span class="pi">:</span> <span class="s">Vacuum cleaner</span>
<span class="s">host</span><span class="pi">:</span> <span class="kt">!secret</span> <span class="s">xiaomi_vacuum_robot_ip</span>
<span class="s">token</span><span class="pi">:</span> <span class="kt">!secret</span> <span class="s">xiaomi_vacuum_robot_token</span>
</code></pre>
</div>
<h2><a class="title-link" name="all-changes" href="#all-changes"></a> All changes</h2>
<ul>
<li>Upgrade pushbullet.py to 0.11.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8691">#8691</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Upgrade mypy to 0.521 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8692">#8692</a>)</li>
<li>Added Lutron Caseta Scene Support (<a href="https://github.com/809694+kfcook">@809694+kfcook</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8690">#8690</a>) (<a href="https://home-assistant.io/components/lutron_caseta/">lutron_caseta docs</a>) (<a href="https://home-assistant.io/components/scene.lutron_caseta/">scene.lutron_caseta docs</a>) (new-platform)</li>
<li>Remove deprecated host and ssl logic from Kodi (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8700">#8700</a>) (<a href="https://home-assistant.io/components/media_player.kodi/">media_player.kodi docs</a>)</li>
<li>Remove deprecated substitute interfaces (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8701">#8701</a>) (<a href="https://home-assistant.io/components/binary_sensor/">binary_sensor docs</a>) (<a href="https://home-assistant.io/components/media_player/">media_player docs</a>)</li>
<li>Remove deprecated sensor_class config options (<a href="https://github.com/armills">@armills</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8702">#8702</a>)</li>
<li>directv: add configuration glue for Genie slaves (<a href="https://github.com/sielicki">@sielicki</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8713">#8713</a>) (<a href="https://home-assistant.io/components/media_player.directv/">media_player.directv docs</a>)</li>
<li>bump python-telegram-bot to 7.0.1 for fully support Bot API 3.2 (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8715">#8715</a>) (<a href="https://home-assistant.io/components/telegram_bot/">telegram_bot docs</a>)</li>
<li>Add proxy support for telegram_bot (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8717">#8717</a>) (<a href="https://home-assistant.io/components/telegram_bot/">telegram_bot docs</a>)</li>
<li>python-insteonplm module version bump (<a href="https://github.com/nugget">@nugget</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8736">#8736</a>) (<a href="https://home-assistant.io/components/insteon_plm/">insteon_plm docs</a>)</li>
<li>New media_player platform for Russound devices using the RIO protocol (<a href="https://github.com/wickerwaka">@wickerwaka</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8448">#8448</a>) (<a href="https://home-assistant.io/components/media_player.russound_rio/">media_player.russound_rio docs</a>) (new-platform)</li>
<li>Add toggle to remotes (<a href="https://github.com/alanfischer">@alanfischer</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8483">#8483</a>) (<a href="https://home-assistant.io/components/remote/">remote docs</a>) (<a href="https://home-assistant.io/components/remote.apple_tv/">remote.apple_tv docs</a>) (<a href="https://home-assistant.io/components/remote.harmony/">remote.harmony docs</a>) (<a href="https://home-assistant.io/components/remote.itach/">remote.itach docs</a>)</li>
<li>added invert_state optional parameter (<a href="https://github.com/gwhiteCL">@gwhiteCL</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8695">#8695</a>) (<a href="https://home-assistant.io/components/cover.rpi_gpio/">cover.rpi_gpio docs</a>)</li>
<li>buienradar dates tz-aware (<a href="https://github.com/mjj4791">@mjj4791</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8767">#8767</a>) (<a href="https://home-assistant.io/components/sensor.buienradar/">sensor.buienradar docs</a>) (<a href="https://home-assistant.io/components/weather.buienradar/">weather.buienradar docs</a>)</li>
<li>Change units from KW to W (<a href="https://github.com/emlt">@emlt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8761">#8761</a>) (<a href="https://home-assistant.io/components/sensor.efergy/">sensor.efergy docs</a>) (breaking change)</li>
<li>Clean up remote component (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8728">#8728</a>) (<a href="https://home-assistant.io/components/remote/">remote docs</a>) (<a href="https://home-assistant.io/components/remote.apple_tv/">remote.apple_tv docs</a>) (<a href="https://home-assistant.io/components/remote.harmony/">remote.harmony docs</a>) (<a href="https://home-assistant.io/components/remote.itach/">remote.itach docs</a>) (<a href="https://home-assistant.io/components/remote.kira/">remote.kira docs</a>)</li>
<li>Wink discovery (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8739">#8739</a>) (<a href="https://home-assistant.io/components/wink/">wink docs</a>)</li>
<li>Enable/Disable Motion detection for Foscam Cameras (<a href="https://github.com/viswa-swami">@viswa-swami</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8582">#8582</a>) (<a href="https://home-assistant.io/components/camera.foscam/">camera.foscam docs</a>)</li>
<li>Allow sonos to select playlists as a source (<a href="https://github.com/mcolyer">@mcolyer</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8258">#8258</a>) (<a href="https://home-assistant.io/components/media_player.sonos/">media_player.sonos docs</a>)</li>
<li>mpd improvements (<a href="https://github.com/StevenLooman">@StevenLooman</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8655">#8655</a>) (<a href="https://home-assistant.io/components/media_player.mpd/">media_player.mpd docs</a>)</li>
<li>Add support for file attachments in pushbullet (<a href="https://github.com/tsvi">@tsvi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8763">#8763</a>) (<a href="https://home-assistant.io/components/notify.pushbullet/">notify.pushbullet docs</a>)</li>
<li>Honeywell fixes and improvements (<a href="https://github.com/dansarginson">@dansarginson</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8756">#8756</a>) (<a href="https://home-assistant.io/components/climate.honeywell/">climate.honeywell docs</a>)</li>
<li>Catch exception (fixes #8724) (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8731">#8731</a>) (<a href="https://home-assistant.io/components/sensor.google_wifi/">sensor.google_wifi docs</a>)</li>
<li>use updated osram lightify 1.0.6 component, including bugfix allowing more than 27 devices (<a href="https://github.com/tfriedel">@tfriedel</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8774">#8774</a>) (<a href="https://home-assistant.io/components/light.osramlightify/">light.osramlightify docs</a>)</li>
<li>flux_led: support for property “available” (<a href="https://github.com/pezinek">@pezinek</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8764">#8764</a>) (<a href="https://home-assistant.io/components/light.flux_led/">light.flux_led docs</a>)</li>
<li>New component: bluesound (<a href="https://github.com/thrawnarn">@thrawnarn</a> - <a href="https://github.com/home-assistant/home-assistant/pull/7192">#7192</a>) (<a href="https://home-assistant.io/components/media_player.bluesound/">media_player.bluesound docs</a>) (new-platform)</li>
<li>Add forecast ability to yr weather sensor (<a href="https://github.com/tinloaf">@tinloaf</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8650">#8650</a>) (<a href="https://home-assistant.io/components/sensor.yr/">sensor.yr docs</a>)</li>
<li>Feature alexa launch request (<a href="https://github.com/steverhoades">@steverhoades</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8730">#8730</a>) (<a href="https://home-assistant.io/components/alexa/">alexa docs</a>)</li>
<li>Fixes UnboundLocalError: local variable setting referenced before assignment (<a href="https://github.com/syssi">@syssi</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8782">#8782</a>) (<a href="https://home-assistant.io/components/climate.tado/">climate.tado docs</a>)</li>
<li>Upgrade pyasn1 to 0.3.1 and pyasn1-modules to 0.0.10 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8787">#8787</a>) (<a href="https://home-assistant.io/components/notify.xmpp/">notify.xmpp docs</a>)</li>
<li>Upgrade sphinx-autodoc-typehints to 1.2.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8783">#8783</a>)</li>
<li>Improvements (configuration and validation) (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8785">#8785</a>) (<a href="https://home-assistant.io/components/sensor.yr/">sensor.yr docs</a>)</li>
<li>Fix referencing unset variable in tado climate component (causes update to fail when tado zone is in manual mode) (<a href="https://github.com/luukd">@luukd</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8723">#8723</a>) (<a href="https://home-assistant.io/components/climate.tado/">climate.tado docs</a>)</li>
<li>mqtt switch: add voluptuous for availability topic (<a href="https://github.com/abmantis">@abmantis</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8797">#8797</a>) (<a href="https://home-assistant.io/components/switch.mqtt/">switch.mqtt docs</a>)</li>
<li>Add mochad light component (<a href="https://github.com/mtreinish">@mtreinish</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8476">#8476</a>) (<a href="https://home-assistant.io/components/light.mochad/">light.mochad docs</a>) (new-platform)</li>
<li>Update numpy 1.13.1 (<a href="https://github.com/pvizeli">@pvizeli</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8806">#8806</a>) (<a href="https://home-assistant.io/components/image_processing.opencv/">image_processing.opencv docs</a>)</li>
<li>Upgrade aiohttp to 2.2.4 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8805">#8805</a>)</li>
<li>Catch divide by zero errors when a sleep type is 0 (<a href="https://github.com/mezz64">@mezz64</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8809">#8809</a>) (<a href="https://home-assistant.io/components/sensor.eight_sleep/">sensor.eight_sleep docs</a>)</li>
<li>InfluxDB component improvements (<a href="https://github.com/hageltech">@hageltech</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8633">#8633</a>) (<a href="https://home-assistant.io/components/influxdb/">influxdb docs</a>)</li>
<li>When Sonos gets a tts source - dontt show an image (<a href="https://github.com/andrey-git">@andrey-git</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8777">#8777</a>) (<a href="https://home-assistant.io/components/media_player.sonos/">media_player.sonos docs</a>)</li>
<li>Polymer 2 (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8815">#8815</a>) (<a href="https://home-assistant.io/components/group/">group docs</a>)</li>
<li>geizhals sensor component (<a href="https://github.com/JulianKahnert">@JulianKahnert</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8458">#8458</a>) (<a href="https://home-assistant.io/components/sensor.geizhals/">sensor.geizhals docs</a>) (new-platform)</li>
<li>Xiaomi vacuum as platform of new <code class="highlighter-rouge">vacuum</code> component derived from ToggleEntity, and services (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8623">#8623</a>) (breaking change) (new-platform)</li>
<li>Update yweather.py (<a href="https://github.com/fanthos">@fanthos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8820">#8820</a>) (<a href="https://home-assistant.io/components/weather.yweather/">weather.yweather docs</a>)</li>
<li>Make HA discover sabnzbd and add it to the Configurator (<a href="https://github.com/Hellowlol">@Hellowlol</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8634">#8634</a>) (<a href="https://home-assistant.io/components/sensor.sabnzbd/">sensor.sabnzbd docs</a>)</li>
<li>Fix Dyson sensors if devices are configured without standby monitoring. Fixes #8569 (<a href="https://github.com/CharlesBlonde">@CharlesBlonde</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8826">#8826</a>) (<a href="https://home-assistant.io/components/dyson/">dyson docs</a>) (<a href="https://home-assistant.io/components/fan.dyson/">fan.dyson docs</a>) (<a href="https://home-assistant.io/components/sensor.dyson/">sensor.dyson docs</a>)</li>
<li>Block dependencies that depend on enum34 (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8698">#8698</a>)</li>
<li>Upgrade aiohttp to 2.2.5 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8828">#8828</a>)</li>
<li>History query and schema optimizations for huge performance boost (<a href="https://github.com/OverloadUT">@OverloadUT</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8748">#8748</a>) (<a href="https://home-assistant.io/components/history/">history docs</a>) (breaking change)</li>
<li>Update xiaomi vacuum tests and include in coverage (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8845">#8845</a>) (<a href="https://home-assistant.io/components/vacuum/">vacuum docs</a>) (<a href="https://home-assistant.io/components/vacuum.xiaomi/">vacuum.xiaomi docs</a>)</li>
<li>Egardia (<a href="https://github.com/jeroenterheerdt">@jeroenterheerdt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8389">#8389</a>)</li>
<li>Do not call update() in constructor. (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8837">#8837</a>) (<a href="https://home-assistant.io/components/sensor.systemmonitor/">sensor.systemmonitor docs</a>)</li>
<li>Upgrade sendgrid to 4.2.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8839">#8839</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8840">#8840</a>) (<a href="https://home-assistant.io/components/sensor.vasttrafik/">sensor.vasttrafik docs</a>)</li>
<li>Make monitored_conditions optional (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8843">#8843</a>) (<a href="https://home-assistant.io/components/sensor.radarr/">sensor.radarr docs</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8849">#8849</a>) (<a href="https://home-assistant.io/components/sensor.synologydsm/">sensor.synologydsm docs</a>)</li>
<li>Make monitored_conditions optional (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8848">#8848</a>) (<a href="https://home-assistant.io/components/sensor.sonarr/">sensor.sonarr docs</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8847">#8847</a>) (<a href="https://home-assistant.io/components/sensor.pocketcasts/">sensor.pocketcasts docs</a>)</li>
<li>Catch ConnectionRefusedError (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8844">#8844</a>) (<a href="https://home-assistant.io/components/sensor.supervisord/">sensor.supervisord docs</a>)</li>
<li>Upgrade sqlalchemy to 1.1.13 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8850">#8850</a>) (<a href="https://home-assistant.io/components/recorder/">recorder docs</a>)</li>
<li>Upgrade pylast to 1.9.0 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8854">#8854</a>) (<a href="https://home-assistant.io/components/sensor.lastfm/">sensor.lastfm docs</a>)</li>
<li>Wi-Fi enabled Roomba support (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8825">#8825</a>) (<a href="https://home-assistant.io/components/vacuum.roomba/">vacuum.roomba docs</a>) (new-platform)</li>
<li>Add support to Dyson 360 Eye robot vacuum using new vacuum platform (<a href="https://github.com/CharlesBlonde">@CharlesBlonde</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8852">#8852</a>) (<a href="https://home-assistant.io/components/dyson/">dyson docs</a>) (<a href="https://home-assistant.io/components/vacuum/">vacuum docs</a>) (<a href="https://home-assistant.io/components/fan.dyson/">fan.dyson docs</a>) (<a href="https://home-assistant.io/components/sensor.dyson/">sensor.dyson docs</a>) (<a href="https://home-assistant.io/components/vacuum.dyson/">vacuum.dyson docs</a>) (new-platform)</li>
<li>Upgrade pyasn1 to 0.3.2 and pyasn1-modules to 0.0.11 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8856">#8856</a>) (<a href="https://home-assistant.io/components/notify.xmpp/">notify.xmpp docs</a>)</li>
<li>Allow to set coordinates (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8858">#8858</a>) (<a href="https://home-assistant.io/components/sensor.zamg/">sensor.zamg docs</a>) (<a href="https://home-assistant.io/components/weather.zamg/">weather.zamg docs</a>)</li>
<li>Added rounding to Google Wifi (<a href="https://github.com/fronzbot">@fronzbot</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8866">#8866</a>) (<a href="https://home-assistant.io/components/sensor.google_wifi/">sensor.google_wifi docs</a>)</li>
<li>Fix off_delay for zwave trigger sensors (<a href="https://github.com/turbokongen">@turbokongen</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8864">#8864</a>) (<a href="https://home-assistant.io/components/zwave/">zwave docs</a>) (<a href="https://home-assistant.io/components/binary_sensor.zwave/">binary_sensor.zwave docs</a>)</li>
<li>Do not use pychromecast.Chromecast for Cast Groups (<a href="https://github.com/foxel">@foxel</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8786">#8786</a>) (<a href="https://home-assistant.io/components/media_player.cast/">media_player.cast docs</a>)</li>
<li>Allow get local ip to work without internet (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8855">#8855</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8859">#8859</a>)</li>
<li>Add new service <code class="highlighter-rouge">clean_spot</code> to vacuums (<a href="https://github.com/azogue">@azogue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8862">#8862</a>) (<a href="https://home-assistant.io/components/vacuum/">vacuum docs</a>) (<a href="https://home-assistant.io/components/vacuum.xiaomi/">vacuum.xiaomi docs</a>)</li>
<li>Warn instead of raise on duplicate YAML key (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8834">#8834</a>)</li>
<li>Add Initial Mailbox panel and sensor (<a href="https://github.com/PhracturedBlue">@PhracturedBlue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8233">#8233</a>) (<a href="https://home-assistant.io/components/asterisk_mbox/">asterisk_mbox docs</a>) (new-platform)</li>
<li>Add Leviton Decora Smart WiFi Device Platform (<a href="https://github.com/tlyakhov">@tlyakhov</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8529">#8529</a>) (<a href="https://home-assistant.io/components/light.decora_wifi/">light.decora_wifi docs</a>) (new-platform)</li>
<li>Consolidate config panels (<a href="https://github.com/balloob">@balloob</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8857">#8857</a>) (<a href="https://home-assistant.io/components/automation/">automation docs</a>) (<a href="https://home-assistant.io/components/zwave/">zwave docs</a>)</li>
<li>Fix spelling error and update link (<a href="https://github.com/Klikini">@Klikini</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8869">#8869</a>)</li>
<li>Implement Roomba fan speed (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8863">#8863</a>) (<a href="https://home-assistant.io/components/vacuum.roomba/">vacuum.roomba docs</a>)</li>
<li>Add nuki lockngo and unlatch services and add attributes (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8687">#8687</a>) (<a href="https://home-assistant.io/components/lock.nuki/">lock.nuki docs</a>)</li>
<li>RFLink: Add send_command service (<a href="https://github.com/leppa">@leppa</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8876">#8876</a>) (<a href="https://home-assistant.io/components/rflink/">rflink docs</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8881">#8881</a>) (<a href="https://home-assistant.io/components/binary_sensor.rest/">binary_sensor.rest docs</a>) (<a href="https://home-assistant.io/components/sensor.rest/">sensor.rest docs</a>)</li>
<li>Add RainMachine switch platform (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8827">#8827</a>) (<a href="https://home-assistant.io/components/switch.rainmachine/">switch.rainmachine docs</a>) (new-platform)</li>
<li>Allow usage of colorlog 3.0.1 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8885">#8885</a>)</li>
<li>Change level (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8883">#8883</a>) (<a href="https://home-assistant.io/components/sensor.statistics/">sensor.statistics docs</a>)</li>
<li>Upgrade youtube_dl to 2017.8.6 (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8880">#8880</a>) (<a href="https://home-assistant.io/components/media_extractor/">media_extractor docs</a>)</li>
<li>Fix media_extractor for some sites (<a href="https://github.com/Spirit-X">@Spirit-X</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8887">#8887</a>) (<a href="https://home-assistant.io/components/media_extractor/">media_extractor docs</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8878">#8878</a>)</li>
<li>Do not call update() in constructor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8892">#8892</a>) (<a href="https://home-assistant.io/components/binary_sensor.command_line/">binary_sensor.command_line docs</a>) (<a href="https://home-assistant.io/components/sensor.command_line/">sensor.command_line docs</a>) (<a href="https://home-assistant.io/components/switch.command_line/">switch.command_line docs</a>)</li>
<li>Changed Pi-hole graphs from stacked bar to line (<a href="https://github.com/bachya">@bachya</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8896">#8896</a>) (<a href="https://home-assistant.io/components/sensor.pi_hole/">sensor.pi_hole docs</a>)</li>
<li>Add longer text strings to mailbox demo to test string truncation (<a href="https://github.com/PhracturedBlue">@PhracturedBlue</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8893">#8893</a>) (<a href="https://home-assistant.io/components/mailbox.demo/">mailbox.demo docs</a>) (<a href="https://home-assistant.io/components/mailbox.demo.txt/">mailbox.demo.txt docs</a>)</li>
<li>added support for setting/getting position of lutron caseta covers (<a href="https://github.com/809694+kfcook">@809694+kfcook</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8898">#8898</a>) (<a href="https://home-assistant.io/components/cover.lutron_caseta/">cover.lutron_caseta docs</a>)</li>
<li>Fix for Neato D3 Connected state obtaining (<a href="https://github.com/karlkar">@karlkar</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8817">#8817</a>) (<a href="https://home-assistant.io/components/sensor.neato/">sensor.neato docs</a>) (<a href="https://home-assistant.io/components/switch.neato/">switch.neato docs</a>)</li>
<li>Update simplisafe-python version (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8908">#8908</a>) (<a href="https://home-assistant.io/components/alarm_control_panel.simplisafe/">alarm_control_panel.simplisafe docs</a>)</li>
<li>LIFX: improve performance of multi-light transitions (<a href="https://github.com/amelchio">@amelchio</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8873">#8873</a>) (<a href="https://home-assistant.io/components/light.lifx/">light.lifx docs</a>)</li>
<li>Support media position and media duration (will display progressbar in ui) (<a href="https://github.com/molobrakos">@molobrakos</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8904">#8904</a>) (<a href="https://home-assistant.io/components/media_player.squeezebox/">media_player.squeezebox docs</a>)</li>
<li>Add new device tracker for Huawei Routers. (<a href="https://github.com/abmantis">@abmantis</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8488">#8488</a>) (<a href="https://home-assistant.io/components/device_tracker.huawei_router/">device_tracker.huawei_router docs</a>) (new-platform)</li>
<li>Add Shodan sensor (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8902">#8902</a>) (<a href="https://home-assistant.io/components/sensor.shodan/">sensor.shodan docs</a>) (new-platform)</li>
<li>Added possibilities to use template in the command_line sensor (<a href="https://github.com/mar-schmidt">@mar-schmidt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8505">#8505</a>) (<a href="https://home-assistant.io/components/sensor.command_line/">sensor.command_line docs</a>)</li>
<li>Honor PEP8 naming convention (<a href="https://github.com/fabaff">@fabaff</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8909">#8909</a>) (<a href="https://home-assistant.io/components/updater/">updater docs</a>)</li>
<li>Remove not needed call to update (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8930">#8930</a>) (<a href="https://home-assistant.io/components/switch.rachio/">switch.rachio docs</a>)</li>
<li>fixing emulated hue issue and testing it (<a href="https://github.com/cribbstechnologies">@cribbstechnologies</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8928">#8928</a>) (<a href="https://home-assistant.io/components/emulated_hue/">emulated_hue docs</a>)</li>
<li>Update roombapy to 1.3.1 to avoid installing all the mapping dependencies (<a href="https://github.com/pschmitt">@pschmitt</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8925">#8925</a>) (<a href="https://home-assistant.io/components/vacuum.roomba/">vacuum.roomba docs</a>)</li>
<li>Update python-wink version to fix Dome water valve bug. (<a href="https://github.com/w1ll1am23">@w1ll1am23</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8923">#8923</a>) (<a href="https://home-assistant.io/components/wink/">wink docs</a>) (<a href="https://home-assistant.io/components/switch.wink/">switch.wink docs</a>)</li>
<li>Fix SET_TEMPERATURE_SCHEMA in climate component (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8879">#8879</a>) (<a href="https://home-assistant.io/components/climate/">climate docs</a>)</li>
</ul>
]]></content>
</entry>

View file

@ -128,6 +128,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -140,9 +143,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -162,6 +162,9 @@ This article will try to explain how they all relate.</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -174,9 +177,6 @@ This article will try to explain how they all relate.</p>
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -152,6 +152,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -164,9 +167,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -139,6 +139,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -151,9 +154,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -145,6 +145,9 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -157,9 +160,6 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,9 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -162,9 +165,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -130,6 +130,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -142,9 +145,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -133,6 +133,9 @@ The old logo, the new detailed logo and the new simple logo.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -145,9 +148,6 @@ The old logo, the new detailed logo and the new simple logo.
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -158,6 +158,9 @@ An initial version of voice control for Home Assistant has landed. The current i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -170,9 +173,6 @@ An initial version of voice control for Home Assistant has landed. The current i
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -194,6 +194,9 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -206,9 +209,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -202,6 +202,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -214,9 +217,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@ Before diving into the newly supported devices and services, I want to highlight
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -228,9 +231,6 @@ Before diving into the newly supported devices and services, I want to highlight
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -262,6 +262,9 @@ This switch platform allows you to control your motion detection setting on your
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -274,9 +277,6 @@ This switch platform allows you to control your motion detection setting on your
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -226,6 +226,9 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -238,9 +241,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -209,6 +209,9 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -221,9 +224,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -246,6 +246,9 @@ The automation and script syntax here is using a deprecated and no longer suppor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -258,9 +261,6 @@ The automation and script syntax here is using a deprecated and no longer suppor
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -207,6 +207,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -219,9 +222,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -284,6 +284,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -296,9 +299,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -274,6 +274,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -286,9 +289,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -173,6 +173,9 @@ Glances web server started on http://0.0.0.0:61208/
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -185,9 +188,6 @@ Glances web server started on http://0.0.0.0:61208/
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -169,6 +169,9 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -181,9 +184,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -152,6 +152,9 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -164,9 +167,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -337,6 +337,9 @@ Home Assistant will keep track of historical values and allow you to integrate i
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -349,9 +352,6 @@ Home Assistant will keep track of historical values and allow you to integrate i
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -142,6 +142,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -154,9 +157,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -159,6 +159,9 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -171,9 +174,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -157,6 +157,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -169,9 +172,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -196,9 +199,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -143,6 +143,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -155,9 +158,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -197,6 +197,9 @@ name: binary_sensor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -209,9 +212,6 @@ name: binary_sensor
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -164,6 +164,9 @@ This is where well configure our task, so select the plus icon to select an a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -176,9 +179,6 @@ This is where well configure our task, so select the plus icon to select an a
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,9 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -162,9 +165,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -192,6 +192,9 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -204,9 +207,6 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -179,9 +182,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -158,6 +158,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -170,9 +173,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -147,6 +147,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -159,9 +162,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -161,6 +161,9 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -173,9 +176,6 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -281,6 +281,9 @@ Z-Wave light bulb |
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -293,9 +296,6 @@ Z-Wave light bulb |
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -255,6 +255,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -267,9 +270,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -178,9 +181,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -220,6 +220,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -232,9 +235,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -163,6 +163,9 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -175,9 +178,6 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -165,6 +165,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -177,9 +180,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@ player state attributes. This change affects automations, scripts and scenes.</l
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -178,9 +181,6 @@ player state attributes. This change affects automations, scripts and scenes.</l
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -174,6 +174,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -186,9 +189,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -134,6 +134,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -146,9 +149,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -149,9 +152,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -156,9 +159,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -166,6 +166,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -178,9 +181,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -208,6 +208,9 @@ For example, my wife works next door - and I couldnt detect whether shes a
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -220,9 +223,6 @@ For example, my wife works next door - and I couldnt detect whether shes a
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -206,6 +206,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -218,9 +221,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -132,6 +132,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -144,9 +147,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -162,6 +162,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -174,9 +177,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -135,6 +135,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -236,6 +236,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -248,9 +251,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -144,6 +144,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -156,9 +159,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -176,6 +176,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -188,9 +191,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -148,6 +148,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -160,9 +163,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -170,6 +170,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -182,9 +185,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@ target_dir /tmp
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -228,9 +231,6 @@ target_dir /tmp
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -171,6 +171,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -183,9 +186,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -161,6 +161,9 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -173,9 +176,6 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -167,6 +167,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -179,9 +182,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -204,6 +204,9 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -216,9 +219,6 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -171,6 +171,9 @@ One of the graphs created with this tutorial.
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -183,9 +186,6 @@ One of the graphs created with this tutorial.
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -251,6 +251,9 @@ If a module is missing then you need to download it from the <a href="https://gi
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -263,9 +266,6 @@ If a module is missing then you need to download it from the <a href="https://gi
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -195,9 +198,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -215,6 +215,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -227,9 +230,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -210,6 +210,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -222,9 +225,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -183,6 +183,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -195,9 +198,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -221,6 +221,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -233,9 +236,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -133,6 +133,9 @@ Heatmap
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -145,9 +148,6 @@ Heatmap
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -282,6 +282,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -294,9 +297,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -209,6 +209,9 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -221,9 +224,6 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -211,6 +211,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -223,9 +226,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -216,6 +216,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -228,9 +231,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -137,6 +137,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -149,9 +152,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -145,6 +145,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -157,9 +160,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -227,6 +227,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -239,9 +242,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -399,6 +399,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -411,9 +414,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -155,6 +155,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -167,9 +170,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -223,6 +223,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -235,9 +238,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -184,6 +184,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -196,9 +199,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -245,6 +245,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -257,9 +260,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -198,6 +198,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -210,9 +213,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -136,6 +136,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -146,6 +146,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -158,9 +161,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -215,6 +215,9 @@ You have to note:
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -227,9 +230,6 @@ You have to note:
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -138,6 +138,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -175,6 +175,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -187,9 +190,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

View file

@ -261,6 +261,9 @@
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Recent Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2017/11/12/tor/">Secure remote access to Home Assistant using Tor</a>
</li>
<li class="post">
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
</li>
@ -273,9 +276,6 @@
<li class="post">
<a href="/blog/2017/11/02/secure-shell-tunnel/">Home Assistant and SSH</a>
</li>
<li class="post">
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
</li>
</ul>
</section>
</div>

Some files were not shown because too many files have changed in this diff Show more