Site updated at 2017-04-25 09:16:46 UTC

This commit is contained in:
Travis CI 2017-04-25 09:16:46 +00:00
parent a918280d3a
commit e23b04f8c9
177 changed files with 1469 additions and 1149 deletions

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-04-25T07:26:49+00:00</updated>
<updated>2017-04-25T09:12:40+00:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Home Assistant]]></name>
@ -13,6 +13,67 @@
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Setting up InfluxDB and Grafana using Docker]]></title>
<link href="https://home-assistant.io/blog/2017/04/25/influxdb-grafana-docker/"/>
<updated>2017-04-25T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/04/25/influxdb-grafana-docker</id>
<content type="html"><![CDATA[<p>Home Assistant collects volumes of (time series) data that are well suited for some fancy graphs. Although the <a href="https://home-assistant.io/components/history/">History</a> component provides some nice plots, I am sure you have always wanted those fancy <a href="https://grafana.com/">Grafana</a> plots. The problem, however, is that low-powered device such as Raspberry Pi that most of us use for our Home Assistant setup are not well suited for such operation.</p>
<p>Instead of running <a href="https://www.influxdata.com/">InfluxDB</a> and Grafana on a Raspberry Pi or a different system and go through the <a href="https://home-assistant.io/blog/2015/12/07/influxdb-and-grafana/">classic approach of installing both tools separately</a>, you can run them in a Docker container on another machine. For this tutorial, I am using a Synology NAS, but the instructions should apply to other devices that can run Docker. Just follow the steps below:</p>
<ol>
<li>SSH into your NAS. You may have to run <code class="highlighter-rouge">sudo su</code> if you are getting permission errors.</li>
<li>Download the <a href="https://hub.docker.com/r/samuelebistoletti/docker-statsd-influxdb-grafana/">docker-statsd-influxdb-grafana</a> image using the command:
<code class="highlighter-rouge">docker pull samuelebistoletti/docker-statsd-influxdb-grafana</code></li>
<li>To start the container for the first-time launch:
<div class="highlighter-rouge"><pre class="highlight"><code>docker run -d \
--name docker-statsd-influxdb-grafana \
-p 3003:3003 \
-p 3004:8083 \
-p 8086:8086 \
-p 22022:22 \
-p 8125:8125/udp \
samuelebistoletti/docker-statsd-influxdb-grafana:latest
</code></pre>
</div>
</li>
<li>The image should now be running and both InfluxBD and Grafana should be now up and running.</li>
<li>You can access InfluxDB at http://NAS_IP_ADDRESS:3004/ and Grafana at http://NAS_IP_ADDRESS:3003/</li>
<li>Navigate to http://NAS_IP_ADDRESS:3004/ and create the database <code class="highlighter-rouge">home_assistant</code> using the command <code class="highlighter-rouge">CREATE DATABASE home_assistant</code>.
<p class="img">
<img src="https://home-assistant.io/images/blog/2017-04-influxdb-grafana/create_HA_database.png" />
</p>
</li>
<li>Now, you need to configure Home Assistant to use InfluxDB. Since, we did not add any username/password to our database, we can simply add the following to our configuration.yaml (replace the IP address with that of the device running Docker) and restart Home Assistant to setup InfluxDB (you will have to fine tune it based on your preferences):
<div class="highlighter-rouge"><pre class="highlight"><code>influxdb:
host: 192.168.2.113
</code></pre>
</div>
</li>
<li>Next, we need to configure Grafana to use InfluxDB. Navigate to http://NAS_IP_ADDRESS:3003/ to access Grafana (login with username and password <code class="highlighter-rouge">root</code>) and add your first data source. Heres how you can configure Grafana to use InfluxDB database. Note that 192.168.2.113 is the IP address of my NAS.
<p class="img">
<img src="https://home-assistant.io/images/blog/2017-04-influxdb-grafana/add_data_source.png" />
</p>
</li>
<li>You should see <code class="highlighter-rouge">Data source is working</code> if you have configured everything correctly.</li>
<li>With all that configured, you are now ready for the fun stuff. You can create as many dashboards as you want and then import the same in Home Assistant.</li>
<li>To add the Grafana dashboard in HA, use the following config:
<div class="highlighter-rouge"><pre class="highlight"><code>panel_iframe:
router:
title: 'Temperature'
url: 'http://192.168.2.113:3003/dashboard/db/temperature?edit&amp;tab=time%20range'
</code></pre>
</div>
<p>The URL can be obtained by clicking Share Dashboard link on your dashboard:</p>
<p class="img">
<img src="https://home-assistant.io/images/blog/2017-04-influxdb-grafana/share_dashboard.png" />
</p>
</li>
</ol>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Hardware Contest 2017]]></title>
<link href="https://home-assistant.io/blog/2017/04/24/hardware-contest-2017/"/>
@ -2185,29 +2246,6 @@ We change the platform name for binary sensor in 0.38 from <code class="highligh
<p>We hope you understand that our desire with these changes is only to help protect the amazing community that has been built around Home Assistant. If you have any questions, please contact us via email, Twitter or Gitter.</p>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Numbers]]></title>
<link href="https://home-assistant.io/blog/2017/01/18/numbers/"/>
<updated>2017-01-18T08:04:05+00:00</updated>
<id>https://home-assistant.io/blog/2017/01/18/numbers</id>
<content type="html"><![CDATA[<p>Its week 3 of 2017 and great things did already happen. This is just a little recap.</p>
<ul>
<li>In the <a href="https://ossmetrics.com/leaderboard">OSS Metrics leaderboard</a> we are on place 30. Within three months we moved from our starting place which was 66 in September 2016 up to the current one.</li>
<li>We were listed on <a href="https://github.com/trending/python">Github Trending</a>. Also, was <a href="https://github.com/balloob">@balloob</a> mentioned as trending developer.</li>
<li><a href="https://github.com/balloob">@balloob</a>s talk at the OpenIoT Summit 2016 was rated as one of the <a href="http://technewsdir.com/top-5-videos-from-embedded-linux-conference-and-openiot-summit-2016">Top 5 videos</a> of the conference.</li>
<li>We now ship over <a href="https://home-assistant.io/components/#all/">500</a> components and platforms.</li>
<li>We processed over 3500 Pull requests on the <a href="https://github.com/home-assistant/home-assistant">main repository</a> so far.</li>
</ul>
<p>You may ask yourself why this is amazing. Its amazing because we are a community-only project driven by volunteers there is no financial support, no company in the background, and no paid developers who are working on Home Assistant. Here is another “Thank you” because you are the driving force behind Home Assistant.</p>
<p>What more numbers? Checkout the <a href="https://home-assistant.io/help/trivia/#numbers/">Trivia page</a></p>
<p> Fabian</p>
]]></content>
</entry>

View file

@ -120,6 +120,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -132,9 +135,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -154,6 +154,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -166,9 +169,6 @@ This article will try to explain how they all relate.</p>
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -156,9 +159,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -127,6 +127,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -139,9 +142,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -131,6 +131,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -143,9 +146,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -137,6 +137,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -149,9 +152,6 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -142,6 +142,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -154,9 +157,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -140,9 +143,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -122,6 +122,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -134,9 +137,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -125,6 +125,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -137,9 +140,6 @@ The old logo, the new detailed logo and the new simple logo.
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -162,9 +165,6 @@ An initial version of voice control for Home Assistant has landed. The current i
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -186,6 +186,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -198,9 +201,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -194,6 +194,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -206,9 +209,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -208,6 +208,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -220,9 +223,6 @@ Before diving into the newly supported devices and services, I want to highlight
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -254,6 +254,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -266,9 +269,6 @@ This switch platform allows you to control your motion detection setting on your
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -218,6 +218,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -230,9 +233,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -201,6 +201,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -213,9 +216,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -238,6 +238,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -250,9 +253,6 @@ The automation and script syntax here is using a deprecated and no longer suppor
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -199,6 +199,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -211,9 +214,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -276,6 +276,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -288,9 +291,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -266,6 +266,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -278,9 +281,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -165,6 +165,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -177,9 +180,6 @@ Glances web server started on http://0.0.0.0:61208/
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -161,6 +161,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -173,9 +176,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -144,6 +144,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -156,9 +159,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -329,6 +329,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -341,9 +344,6 @@ Home Assistant will keep track of historical values and allow you to integrate i
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -146,9 +149,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -151,6 +151,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -163,9 +166,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -149,6 +149,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -161,9 +164,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -188,9 +191,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -127,6 +127,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -139,9 +142,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -147,9 +150,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -189,6 +189,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -201,9 +204,6 @@ name: binary_sensor
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -156,6 +156,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -168,9 +171,6 @@ This is where well configure our task, so select the plus icon to select an a
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -142,6 +142,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -154,9 +157,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -181,6 +181,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -193,9 +196,6 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -159,6 +159,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -171,9 +174,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -150,6 +150,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -162,9 +165,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -151,9 +154,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -153,6 +153,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -165,9 +168,6 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -273,6 +273,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -285,9 +288,6 @@ Z-Wave light bulb |
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -247,6 +247,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -259,9 +262,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -170,9 +173,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -212,6 +212,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -224,9 +227,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -155,6 +155,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -167,9 +170,6 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -169,9 +172,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -158,6 +158,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -170,9 +173,6 @@ player state attributes. This change affects automations, scripts and scenes.</l
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -178,9 +181,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -126,6 +126,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -138,9 +141,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -129,6 +129,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -141,9 +144,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -124,6 +124,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -136,9 +139,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -170,9 +173,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -200,6 +200,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -212,9 +215,6 @@ For example, my wife works next door - and I couldnt detect whether shes a
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -124,6 +124,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -136,9 +139,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -210,9 +213,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -124,6 +124,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -136,9 +139,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -142,9 +145,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -154,6 +154,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -166,9 +169,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -127,6 +127,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -139,9 +142,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -228,6 +228,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -240,9 +243,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -148,9 +151,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -168,6 +168,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -180,9 +183,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -140,6 +140,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -152,9 +155,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -174,9 +177,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -208,6 +208,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -220,9 +223,6 @@ target_dir /tmp
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -163,6 +163,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -175,9 +178,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -153,6 +153,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -165,9 +168,6 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -159,6 +159,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -171,9 +174,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -196,6 +196,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -208,9 +211,6 @@ SQLite version 3.11.0 2016-02-15 17:29:24
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -163,6 +163,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -175,9 +178,6 @@ One of the graphs created with this tutorial.
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -243,6 +243,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -255,9 +258,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/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -187,9 +190,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -219,9 +222,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -214,9 +217,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -187,9 +190,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -213,6 +213,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -225,9 +228,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -125,6 +125,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -137,9 +140,6 @@ Heatmap
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -286,9 +289,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -201,6 +201,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -213,9 +216,6 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -203,6 +203,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -215,9 +218,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -208,6 +208,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -220,9 +223,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -129,6 +129,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -141,9 +144,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -149,9 +152,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -219,6 +219,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -231,9 +234,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -391,6 +391,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -403,9 +406,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -159,9 +162,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -227,9 +230,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -188,9 +191,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -237,6 +237,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -249,9 +252,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -190,6 +190,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -202,9 +205,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -140,9 +143,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -150,9 +153,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -207,6 +207,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -219,9 +222,6 @@ You have to note:
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -142,9 +145,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -179,9 +182,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

View file

@ -253,6 +253,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/04/25/influxdb-grafana-docker/">Setting up InfluxDB and Grafana using Docker</a>
</li>
<li class="post">
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
</li>
@ -265,9 +268,6 @@
<li class="post">
<a href="/blog/2017/04/15/ios/">1 year and 22 days ago I had an idea...</a>
</li>
<li class="post">
<a href="/blog/2017/04/08/eddystone-beacons-lockitron-locks-total-connect/">Home Assistant 0.42: Eddystone Beacons, Lockitron locks and Total Connect alarm systems</a>
</li>
</ul>
</section>
</div>

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