Site updated at 2017-05-05 06:38:31 UTC
This commit is contained in:
parent
b0da58f0a7
commit
cbb2b7db76
181 changed files with 1199 additions and 1068 deletions
160
atom.xml
160
atom.xml
|
@ -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-05-05T06:15:13+00:00</updated>
|
||||
<updated>2017-05-05T06:34:29+00:00</updated>
|
||||
<id>https://home-assistant.io/</id>
|
||||
<author>
|
||||
<name><![CDATA[Home Assistant]]></name>
|
||||
|
@ -13,6 +13,22 @@
|
|||
<generator uri="http://octopress.org/">Octopress</generator>
|
||||
|
||||
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Podcast.__init__ interview with Paulus Schoutsen]]></title>
|
||||
<link href="https://home-assistant.io/blog/2017/05/05/podcast-init-interview/"/>
|
||||
<updated>2017-05-05T02:00:00+00:00</updated>
|
||||
<id>https://home-assistant.io/blog/2017/05/05/podcast-init-interview</id>
|
||||
<content type="html"><![CDATA[<p class="img">
|
||||
<a href="https://www.podcastinit.com/"><img src="https://home-assistant.io/images/blog/2017-05-podcast-init/podcast_init.png" /></a>
|
||||
</p>
|
||||
|
||||
<p>Earlier this year I was interviewed by Tobias Macey from <a href="https://www.podcastinit.com/">Podcast.__init__</a> about Python and Home Assistant. Just realized that we never shared this on the blog, oops. Here it is, enjoy!</p>
|
||||
|
||||
<script class="podigee-podcast-player" src="//cdn.podigee.com/podcast-player/javascripts/podigee-podcast-player.js" data-configuration="https://www.podcastinit.com?podigee_player=205"></script>
|
||||
|
||||
]]></content>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Home Assistant on a Pi Zero W in 30 minutes]]></title>
|
||||
<link href="https://home-assistant.io/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/"/>
|
||||
|
@ -1970,148 +1986,6 @@ On the close horizon from <a href="https://github.com/Landrash">@Landrash</a> th
|
|||
|
||||
<p>To get started with the new image, check out the installation instructions in the <a href="https://home-assistant.io/getting-started/installation-raspberry-pi-image/">getting started section</a>.</p>
|
||||
|
||||
]]></content>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Smart Baby Monitor]]></title>
|
||||
<link href="https://home-assistant.io/blog/2017/02/03/babyphone/"/>
|
||||
<updated>2017-02-03T23:00:00+00:00</updated>
|
||||
<id>https://home-assistant.io/blog/2017/02/03/babyphone</id>
|
||||
<content type="html"><![CDATA[<p>One of the hardest part of being a parent is keeping a constant eye on the baby to make sure that baby is doing well. Thus, it is not surprising that baby monitors are one of the fastest growing baby product category. However, many of the baby monitors available on the market are rather dumb and expect the parents to keep looking at the video stream or listen to the audio. This how-to will help you create a smart baby monitor on a budget and integrate it with Home Assitant. Instead of relying on the poor quality baby monitor speakers, we use our existing speakers (eg. Sonos). We can also send notifications (with pictures) to avoid constant monitoring of the feed.</p>
|
||||
|
||||
<p>Obviously, you can use the setup as a general purpose surveillance system to monitor noise in the whole house.</p>
|
||||
|
||||
<!--more-->
|
||||
|
||||
<h3><a class="title-link" name="setup" href="#setup"></a> Setup</h3>
|
||||
|
||||
<p>We need an IP camera that can capture sound in the baby’s room. It is also possible to use a Raspberry Pi with a microphone and send the audio to Home Assistant with <code class="highlighter-rouge">ffmpeg -f alsa -i hw:1,0 -vn -f rtp rtp://236.0.0.1:2000</code> over multicast. We can set the <code class="highlighter-rouge">input</code> option on the Home Assistant side to <code class="highlighter-rouge">rtp://236.0.0.1:2000</code> in same network.</p>
|
||||
|
||||
<p>Next, we attach a FFmpeg noise binary sensor to our IP camera. The sensor has an output <code class="highlighter-rouge">option</code> that allows us to send the output to an <a href="http://icecast.org/">icecast2</a> server for playing over speakers integrated with Home Assistant (eg. Sonos). We can use the binary sensor in our automation. You can ignore the icecast2 setup if you don’t want to play the audio after the noise sensor trigger.</p>
|
||||
|
||||
<p class="note">
|
||||
We change the platform name for binary sensor in 0.38 from <code class="highlighter-rouge">ffmpeg</code> to <code class="highlighter-rouge">ffmpeg_noise</code>. Also all service going to component and was rename from <code class="highlighter-rouge">binary_sensor.ffmpeg_xy</code> to <code class="highlighter-rouge">ffmpeg.xy</code>.
|
||||
</p>
|
||||
|
||||
<p>On Raspbian Jessie, you can setup <a href="https://home-assistant.io/components/ffmpeg/">FFmpeg</a> and install a <a href="http://icecast.org/">icecast2</a> server using:</p>
|
||||
|
||||
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>sudo <span class="nb">echo</span> <span class="s2">"deb http://ftp.debian.org/debian jessie-backports main"</span> >> /etc/apt/sources.list
|
||||
<span class="gp">$ </span>sudo apt-get update
|
||||
<span class="gp">$ </span>sudo apt-get -t jessie-backports install ffmpeg
|
||||
<span class="gp">$ </span>sudo apt-get install icecast2
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<p>We setup a icecast mount point for our babyphone and update <code class="highlighter-rouge">/etc/icecast2/icecast.xml</code>:</p>
|
||||
|
||||
<div class="highlighter-rouge"><pre class="highlight"><code><mount>
|
||||
<mount-name>/babyphone.mp3</mount-name>
|
||||
<stream-name>Babyphone</stream-name>
|
||||
|
||||
<username>stream_user</username>
|
||||
<password>stream_pw</password>
|
||||
</mount>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<p>Now we can add the noise sensor to Home Assistant. We can lower the sensitivity of the sensor (so that you are not inundated with notifications for every cough of the baby) to 2 seconds using the <code class="highlighter-rouge">duration</code> option. The sensor should wait 60 seconds before restoring and it prevent us that a wine break will triggering a new alarm.</p>
|
||||
|
||||
<p>We can optimize the audio stream for human voice by using a highpass filter with 300 Hz and a lowpass filter with 2500 Hz. This filters out all non-human sounds such as background noise. We can even add a volume amplifier if the microphone volume is too low (you can remove it from <code class="highlighter-rouge">extra_arguments</code>). For icecast2 we convert the audio stream to mp3 with samplerate of 16000 (which is the minimum for Sonos speakers). We use <code class="highlighter-rouge">peak</code> to set the threshold for noise detection, where 0 dB is very loud and -100 dB is low.</p>
|
||||
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">binary_sensor</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">platform</span><span class="pi">:</span> <span class="s">ffmpeg_noise</span>
|
||||
<span class="s">input</span><span class="pi">:</span> <span class="s">rtsp://user:pw@my_input/video</span>
|
||||
<span class="s">extra_arguments</span><span class="pi">:</span> <span class="s">-filter:a highpass=f=300,lowpass=f=2500,volume=volume=2 -codec:a libmp3lame -ar 16000</span>
|
||||
<span class="s">output</span><span class="pi">:</span> <span class="s">-f mp3 icecast://stream_user:stream_pw@127.0.0.1:8000/babyphone.mp3</span>
|
||||
<span class="s">initial_state</span><span class="pi">:</span> <span class="s">false</span>
|
||||
<span class="s">duration</span><span class="pi">:</span> <span class="s">2</span>
|
||||
<span class="s">reset</span><span class="pi">:</span> <span class="s">60</span>
|
||||
<span class="s">peak</span><span class="pi">:</span> <span class="s">-32</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<p>We use the option <code class="highlighter-rouge">initial_state</code> to prevent the FFmpeg process from starting with Home Assistant and only start it when needed. We use an <code class="highlighter-rouge">input_boolean</code> to control the state of FFmpeg services using the following automation.</p>
|
||||
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">input_boolean</span><span class="pi">:</span>
|
||||
<span class="s">babyphone</span><span class="pi">:</span>
|
||||
<span class="s">name</span><span class="pi">:</span> <span class="s">babyphone</span>
|
||||
<span class="s">initial</span><span class="pi">:</span> <span class="s">off</span>
|
||||
|
||||
<span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s1">'</span><span class="s">Babyphone</span><span class="nv"> </span><span class="s">on'</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">state</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">input_boolean.babyphone</span>
|
||||
<span class="s">from</span><span class="pi">:</span> <span class="s1">'</span><span class="s">off'</span>
|
||||
<span class="s">to</span><span class="pi">:</span> <span class="s1">'</span><span class="s">on'</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="s">service</span><span class="pi">:</span> <span class="s">ffmpeg.start</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">binary_sensor.ffmpeg_noise</span>
|
||||
|
||||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s1">'</span><span class="s">Babyphone</span><span class="nv"> </span><span class="s">off'</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">state</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">input_boolean.babyphone</span>
|
||||
<span class="s">from</span><span class="pi">:</span> <span class="s1">'</span><span class="s">on'</span>
|
||||
<span class="s">to</span><span class="pi">:</span> <span class="s1">'</span><span class="s">off'</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="s">service</span><span class="pi">:</span> <span class="s">ffmpeg.stop</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">binary_sensor.ffmpeg_noise</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<h3><a class="title-link" name="trigger-a-alarm" href="#trigger-a-alarm"></a> Trigger a alarm</h3>
|
||||
|
||||
<p>Now we can make a lot stuff. Here is a simple example of an automation what should be possible with Sonos speakers.</p>
|
||||
|
||||
<div class="language-yaml highlighter-rouge"><pre class="highlight"><code><span class="s">automation</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s1">'</span><span class="s">Babyphone</span><span class="nv"> </span><span class="s">alarm</span><span class="nv"> </span><span class="s">on'</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">state</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">binary_sensor.ffmpeg_noise</span>
|
||||
<span class="s">from</span><span class="pi">:</span> <span class="s1">'</span><span class="s">off'</span>
|
||||
<span class="s">to</span><span class="pi">:</span> <span class="s1">'</span><span class="s">on'</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">media_player.sonos_snapshot</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">media_player.bedroom</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">media_player.sonos_unjoin</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">media_player.bedroom</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">media_player.volume_set</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">media_player.bedroom</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
<span class="s">volume_level</span><span class="pi">:</span> <span class="s">0.4</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">media_player.play_media</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">media_player.bedroom</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
<span class="s">media_content_type</span><span class="pi">:</span> <span class="s1">'</span><span class="s">music'</span>
|
||||
<span class="s">media_content_id</span><span class="pi">:</span> <span class="s">http://my_ip_icecast:8000/babyphone.mp3</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">light.turn_on</span><span class="pi">:</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">light.floor</span>
|
||||
<span class="pi">-</span> <span class="s">light.bedroom</span>
|
||||
<span class="s">data</span><span class="pi">:</span>
|
||||
<span class="s">brightness</span><span class="pi">:</span> <span class="s">150</span>
|
||||
|
||||
<span class="pi">-</span> <span class="s">alias</span><span class="pi">:</span> <span class="s1">'</span><span class="s">Babyphone</span><span class="nv"> </span><span class="s">alarm</span><span class="nv"> </span><span class="s">off'</span>
|
||||
<span class="s">trigger</span><span class="pi">:</span>
|
||||
<span class="s">platform</span><span class="pi">:</span> <span class="s">state</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">binary_sensor.ffmpeg_noise</span>
|
||||
<span class="s">from</span><span class="pi">:</span> <span class="s1">'</span><span class="s">on'</span>
|
||||
<span class="s">to</span><span class="pi">:</span> <span class="s1">'</span><span class="s">off'</span>
|
||||
<span class="s">action</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">media_player.sonos_restore</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span> <span class="s">media_player.bedroom</span>
|
||||
<span class="pi">-</span> <span class="s">service</span><span class="pi">:</span> <span class="s">light.turn_off</span><span class="pi">:</span>
|
||||
<span class="s">entity_id</span><span class="pi">:</span>
|
||||
<span class="pi">-</span> <span class="s">light.floor</span>
|
||||
<span class="pi">-</span> <span class="s">light.bedroom</span>
|
||||
</code></pre>
|
||||
</div>
|
||||
|
||||
<h3><a class="title-link" name="thanks" href="#thanks"></a> Thanks</h3>
|
||||
|
||||
<p>Special thanks to <a href="https://github.com/arsaboo">arsaboo</a> for assistance in writing this blogpost.</p>
|
||||
]]></content>
|
||||
</entry>
|
||||
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -132,9 +135,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -156,9 +159,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -139,9 +142,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -143,9 +146,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -140,9 +143,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -134,9 +137,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -206,9 +209,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -150,9 +153,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -150,9 +153,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -211,9 +214,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -288,9 +291,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -278,9 +281,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -146,9 +149,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -161,9 +164,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -188,9 +191,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -139,9 +142,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -147,9 +150,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -201,9 +204,6 @@ name: binary_sensor
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -156,6 +156,9 @@ This is where we’ll 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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -168,9 +171,6 @@ This is where we’ll configure our task, so select the plus icon to select an a
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -154,9 +157,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -171,9 +174,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -162,9 +165,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -151,9 +154,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -285,9 +288,6 @@ Z-Wave light bulb |
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -259,9 +262,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -170,9 +173,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -224,9 +227,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -169,9 +172,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -178,9 +181,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -138,9 +141,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -141,9 +144,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -150,9 +153,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -136,9 +139,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -148,9 +151,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -170,9 +173,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -200,6 +200,9 @@ For example, my wife works next door - and I couldn’t detect whether she’s 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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -212,9 +215,6 @@ For example, my wife works next door - and I couldn’t detect whether she’s a
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -136,9 +139,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -210,9 +213,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -136,9 +139,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -142,9 +145,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -166,9 +169,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -139,9 +142,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -240,9 +243,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -148,9 +151,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -180,9 +183,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -152,9 +155,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -174,9 +177,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -220,9 +223,6 @@ target_dir /tmp
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -175,9 +178,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -171,9 +174,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -175,9 +178,6 @@ One of the graphs created with this tutorial.
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -187,9 +190,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -219,9 +222,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -214,9 +217,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -187,9 +190,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -225,9 +228,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -137,9 +140,6 @@ Heatmap
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -286,9 +289,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</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/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -215,9 +218,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -220,9 +223,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -141,9 +144,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -149,9 +152,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -231,9 +234,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -403,9 +406,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -159,9 +162,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -227,9 +230,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -188,9 +191,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -249,9 +252,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -202,9 +205,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -140,9 +143,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -150,9 +153,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -219,9 +222,6 @@ You have to note:
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -142,9 +145,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -179,9 +182,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
|
@ -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/05/05/podcast-init-interview/">Podcast.__init__ interview with Paulus Schoutsen</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/05/01/home-assistant-on-raspberry-pi-zero-in-30-minutes/">Home Assistant on a Pi Zero W in 30 minutes</a>
|
||||
</li>
|
||||
|
@ -265,9 +268,6 @@
|
|||
<li class="post">
|
||||
<a href="/blog/2017/04/24/hardware-contest-2017/">Hardware Contest 2017</a>
|
||||
</li>
|
||||
<li class="post">
|
||||
<a href="/blog/2017/04/22/ikea-tradfri-spotify/">Home Assistant 0.43: IKEA Trådfri, Spotify and our iOS app is live</a>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue