Site updated at 2015-12-06 09:01:18 UTC

This commit is contained in:
Paulus Schoutsen 2015-12-06 01:01:18 -08:00
parent 4d3fac69df
commit 4148eac779
135 changed files with 4170 additions and 2293 deletions

113
atom.xml
View file

@ -4,7 +4,7 @@
<title><![CDATA[Home Assistant]]></title> <title><![CDATA[Home Assistant]]></title>
<link href="https://home-assistant.io/atom.xml" rel="self"/> <link href="https://home-assistant.io/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>
@ -13,6 +13,25 @@
<generator uri="http://octopress.org/">Octopress</generator> <generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Community Highlights]]></title>
<link href="https://home-assistant.io/blog/2015/12/05/community-highlights/"/>
<updated>2015-12-05T23:39:00-08:00</updated>
<id>https://home-assistant.io/blog/2015/12/05/community-highlights</id>
<content type="html"><![CDATA[<p>From time to time we come along things that are worth sharing with fellow Home Assisters. Here a list of some cool stuff from last week:</p>
<p>First is the public beta of <a href="https://letsencrypt.org/">Lets Encrypt</a>. Lets Encrypt is a new certificate authority that is free, automated and open. This means that it will now be very easy to secure your connection to Home Assistant while you are away from home. W1ll1am23 has written up <a href="https://automic.us/forum/viewtopic.php?f=4&amp;t=29">a guide how to get started</a>.</p>
<p>The next thing is a show-off of some of the cool stuff people do with Home Assistant. This is miniconfig talking to Home Assistant using the Amazon Echo!</p>
<div style="width: 560px; margin: 0 auto 16px;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9QQjklnSQKY" frameborder="0" allowfullscreen=""></iframe>
</div>
<p>And last but not least, Midwestern Mac did a <a href="http://www.midwesternmac.com/blogs/jeff-geerling/raspberry-pi-microsd-card">microSD card performance comparison</a> for the Raspberry Pi. If youre using a Pi, make sure to check it out!</p>
]]></content>
</entry>
<entry> <entry>
<title type="html"><![CDATA[Survey November 2015]]></title> <title type="html"><![CDATA[Survey November 2015]]></title>
<link href="https://home-assistant.io/blog/2015/11/22/survey-november-2015/"/> <link href="https://home-assistant.io/blog/2015/11/22/survey-november-2015/"/>
@ -2288,98 +2307,6 @@ Before diving into the newly supported devices and services, I want to highlight
</pre></div> </pre></div>
</div> </div>
</div> </div>
]]></content>
</entry>
<entry>
<title type="html"><![CDATA[Release notes for March 22, 2015]]></title>
<link href="https://home-assistant.io/blog/2015/03/22/release-notes/"/>
<updated>2015-03-22T01:21:00-07:00</updated>
<id>https://home-assistant.io/blog/2015/03/22/release-notes</id>
<content type="html"><![CDATA[<p>A new version of Home Assistant has just been pushed out. It contains bugfixes contributed by <a href="https://github.com/jamespcole">jamespcole</a>, <a href="https://github.com/andythigpen">andythigpen</a>, <a href="https://github.com/trainman419">trainman419</a> and <a href="https://github.com/balloob">me</a>. It also adds a bunch of great new features:</p>
<p><strong>Script</strong><br />
Andythigpen has contributed a script component. This allows users to create a sequence of service calls and delays. Scripts can be started using the service <code>script/turn_on</code> and interrupted using the service <code>script/turn_off</code>. A separate page has been added to the frontend to see the status of your scripts.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">script</span>:
<span class="comment"># Turns on the bedroom lights and then the living room lights 1 minute later</span>
<span class="key">wakeup</span>:
<span class="key">alias</span>: <span class="string"><span class="content">Wake Up</span></span>
<span class="key">sequence</span>:
- <span class="string"><span class="content">alias: Bedroom lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.bedroom</span></span>
- <span class="string"><span class="content">delay:</span><span class="content">
# supports seconds, milliseconds, minutes, hours, etc.
minutes: 1</span></span>
- <span class="string"><span class="content">alias: Living room lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.living_room</span></span>
</pre></div>
</div>
</div>
<!--more-->
<p><strong>Scene</strong><br />
I (Paulus) have contributed a scene component. A user can create scenes that capture the states you want certain entities to be. For example a scene can contain that light A should be turned on and light B should be bright red. Deactivating a scene will restore the previous state from before the scene was activated. Just like scripts, scenes have their own separate page to see which scenes are on.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">scene</span>:
- <span class="string"><span class="content">name: Romantic</span></span>
<span class="key">entities</span>:
<span class="key">light.tv_back_light</span>: <span class="string"><span class="content">on</span></span>
<span class="key">light.ceiling</span>:
<span class="key">state</span>: <span class="string"><span class="content">on</span></span>
<span class="key">color</span>: <span class="string"><span class="content">[0.33, 0.66]</span></span>
<span class="key">brightness</span>: <span class="string"><span class="content">200</span></span>
</pre></div>
</div>
</div>
<p><a name="sabnzbd"></a><br />
<strong>SABnzbd</strong><br />
<img src="https://home-assistant.io/images/supported_brands/sabnzbd.png" style="border:none; box-shadow: none; float: right;" height="50" /> James Cole has contributed support to integrate SABnzbd. This will allow you to monitor your downloads from within Home Assistant and setup automation based on the information.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">sensor</span>:
- <span class="string"><span class="content">platform: sabnzbd</span></span>
<span class="key">name</span>: <span class="string"><span class="content">SAB</span></span>
<span class="key">api_key</span>: <span class="string"><span class="content">YOUR_API_KEY</span></span>
<span class="comment"># Example: http://192.168.1.32:8124/</span>
<span class="key">base_url</span>: <span class="string"><span class="content">YOUR_SABNZBD_BASE_URL</span></span>
<span class="key">monitored_variables</span>:
- <span class="string"><span class="content">type: 'current_status'</span></span>
- <span class="string"><span class="content">type: 'speed'</span></span>
- <span class="string"><span class="content">type: 'queue_size'</span></span>
- <span class="string"><span class="content">type: 'queue_remaining'</span></span>
- <span class="string"><span class="content">type: 'disk_size'</span></span>
- <span class="string"><span class="content">type: 'disk_free'</span></span>
</pre></div>
</div>
</div>
<p><a name="pushover"></a><br />
<strong>PushOver</strong><br />
<img src="https://home-assistant.io/images/supported_brands/pushover.png" style="border:none; box-shadow: none; float: right;" height="50" /> James Cole has also contributed support for <a href="https://pushover.net/">the PushOver service</a> as a platform for the notify component. This allows components to send messages to the user using PushOver.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">notify</span>:
<span class="key">platform</span>: <span class="string"><span class="content">pushover</span></span>
<span class="comment"># Get this by registering a new application on https://pushover.net</span>
<span class="key">api_key</span>: <span class="string"><span class="content">ABCDEFGHJKLMNOPQRSTUVXYZ</span></span>
<span class="comment"># Get this by logging into your account on https://pushover.net</span>
<span class="key">user_key</span>: <span class="string"><span class="content">ABCDEFGHJKLMNOPQRSTUVXYZ</span></span>
</pre></div>
</div>
</div>
]]></content> ]]></content>
</entry> </entry>

View file

@ -187,6 +187,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -210,12 +216,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -242,6 +242,12 @@ This article will try to explain how they all relate.</p>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -265,12 +271,6 @@ This article will try to explain how they all relate.</p>
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -226,6 +226,12 @@ api_key=ABCDEFGHJKLMNOPQRSTUVXYZ
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -249,12 +255,6 @@ api_key=ABCDEFGHJKLMNOPQRSTUVXYZ
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -201,6 +201,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -224,12 +230,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -204,6 +204,12 @@ password=YOUR_PASSWORD
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -227,12 +233,6 @@ password=YOUR_PASSWORD
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -210,6 +210,12 @@ Home Assistant now supports <code>--open-ui</code> and <code>--demo-mode</code>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -233,12 +239,6 @@ Home Assistant now supports <code>--open-ui</code> and <code>--demo-mode</code>
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -220,6 +220,12 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -243,12 +249,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -203,6 +203,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -226,12 +232,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -193,6 +193,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -216,12 +222,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -194,6 +194,12 @@ The old logo, the new detailed logo and the new simple logo.
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -217,12 +223,6 @@ The old logo, the new detailed logo and the new simple logo.
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -233,6 +233,12 @@ An initial version of voice control for Home Assistant has landed. The current i
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -256,12 +262,6 @@ An initial version of voice control for Home Assistant has landed. The current i
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -270,6 +270,12 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -293,12 +299,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -281,6 +281,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -304,12 +310,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -216,6 +216,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -239,12 +245,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -308,6 +308,12 @@ Before diving into the newly supported devices and services, I want to highlight
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -331,12 +337,6 @@ Before diving into the newly supported devices and services, I want to highlight
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -361,6 +361,12 @@ This switch platform allows you to control your motion detection setting on your
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -384,12 +390,6 @@ This switch platform allows you to control your motion detection setting on your
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -313,6 +313,12 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -336,12 +342,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -302,6 +302,12 @@ Support for Temper temperature sensors has been contributed by <a href="https://
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -325,12 +331,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -212,6 +212,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -235,12 +241,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -321,6 +321,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -344,12 +350,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -299,6 +299,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -322,12 +328,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -502,6 +502,12 @@ PubSubClient client(ethClient);
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -525,12 +531,6 @@ PubSubClient client(ethClient);
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -361,6 +361,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -384,12 +390,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -262,6 +262,12 @@ Glances web server started on http://0.0.0.0:61208/
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -285,12 +291,6 @@ Glances web server started on http://0.0.0.0:61208/
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -241,6 +241,12 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -264,12 +270,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -217,6 +217,12 @@ Map in Home Assistant showing two people and three zones (home, school, work)
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -240,12 +246,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -548,6 +548,12 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000();
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -567,12 +573,6 @@ Adafruit_HDC1000 hdc = Adafruit_HDC1000();
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -206,6 +206,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -229,8 +235,6 @@
</li> </li>
</ul> </ul>
</section> </section>

View file

@ -228,6 +228,12 @@ This makes more sense as most people run Home Assistant as a daemon</p>
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -247,12 +253,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -224,6 +224,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -243,12 +249,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -287,6 +287,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
@ -306,12 +312,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -0,0 +1,276 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Community Highlights - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Interesting links from the Home Assistant community.">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/blog/2015/12/05/community-highlights/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="Community Highlights">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/blog/2015/12/05/community-highlights/">
<meta property="og:type" content="article">
<meta property="og:description" content="Interesting links from the Home Assistant community.">
<meta property="og:image" content="https://home-assistant.io/images/blog/2015-12-community/hass-alexa.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="post">
<header>
<h1 class="title indent">Community Highlights</h1>
<div class="meta clearfix">
<time datetime="2015-12-05T23:39:00-08:00" pubdate data-updated="true"><i class="icon-calendar"></i> December 6, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> less than one minute reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/community/'>community</a></li>
</ul>
</span>
<a class='comments'
href="#disqus_thread"
>Comments</a>
</div>
</header>
<p>From time to time we come along things that are worth sharing with fellow Home Assisters. Here a list of some cool stuff from last week:</p>
<p>First is the public beta of <a href="https://letsencrypt.org/">Lets Encrypt</a>. Lets Encrypt is a new certificate authority that is free, automated and open. This means that it will now be very easy to secure your connection to Home Assistant while you are away from home. W1ll1am23 has written up <a href="https://automic.us/forum/viewtopic.php?f=4&amp;t=29">a guide how to get started</a>.</p>
<p>The next thing is a show-off of some of the cool stuff people do with Home Assistant. This is miniconfig talking to Home Assistant using the Amazon Echo!</p>
<div style="width: 560px; margin: 0 auto 16px;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9QQjklnSQKY" frameborder="0" allowfullscreen=""></iframe>
</div>
<p>And last but not least, Midwestern Mac did a <a href="http://www.midwesternmac.com/blogs/jeff-geerling/raspberry-pi-microsd-card">microSD card performance comparison</a> for the Raspberry Pi. If youre using a Pi, make sure to check it out!</p>
</article>
<section id="disqus">
<h3 class="indent title">Comments</h3>
<div id="disqus_thread" aria-live="polite"><noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript></div>
</section>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="sharing aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Share this post</h1>
<a href="//twitter.com/share"
class="twitter-share-button"
data-url="https://home-assistant.io/blog/2015/12/05/community-highlights/"
data-counturl="https://home-assistant.io/blog/2015/12/05/community-highlights/" >Tweet</a>
<div class="g-plusone" data-size="standard"></div>
<div class="fb-share-button" style='top: -6px;'
data-href="https://home-assistant.io/blog/2015/12/05/community-highlights/"
data-layout="button_count">
</div>
</section>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '338291289691179',
xfbml : true,
version : 'v2.2'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Other Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li>
<li class="post">
<a href="/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/">0.8: Honeywell Thermostats, Orvibo switches and Z-Wave switches and lights </a>
</li>
<li class="post">
<a href="/blog/2015/10/26/firetv-and-radiotherm-now-supported/">0.7.6: Amazon FireTV, Radiotherm thermostats</a>
</li>
<li class="post">
<a href="/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/">Report the temperature with ESP8266 to MQTT</a>
</li>
</ul>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<script>
var disqus_shortname = 'home-assistant';
// var disqus_developer = 1;
var disqus_identifier = 'https://home-assistant.io/blog/2015/12/05/community-highlights/';
var disqus_url = 'https://home-assistant.io/blog/2015/12/05/community-highlights/';
var disqus_script = 'embed.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
</body>
</html>

View file

@ -44,11 +44,11 @@
Nov 22 Dec 05
Survey November 2015 Community Highlights
@ -56,7 +56,7 @@
survey..."> commun...">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png"> <meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
@ -145,6 +145,38 @@
<h2>2015</h2> <h2>2015</h2>
<article>
<div class="grid">
<div class="grid__item one-fifth palm-one-whole">
<time datetime="2015-12-05T23:39:00-08:00" pubdate>
<span class='month'>Dec</span> <span class='day'>05</span>
</time>
</div>
<div class="grid__item four-fifths palm-one-whole">
<h1 class="gamma"><a href="/blog/2015/12/05/community-highlights/">Community Highlights</a></h1>
<footer class="meta">
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/community/'>community</a></li>
</ul>
</span>
</footer>
<hr class="divider">
</div>
</div>
</article>
<article> <article>
<div class="grid"> <div class="grid">
@ -1207,6 +1239,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -1230,12 +1268,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: architecture | Home Assistant]]></title> <title><![CDATA[Category: architecture | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/architecture/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/architecture/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -199,6 +199,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -222,12 +228,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: branding | Home Assistant]]></title> <title><![CDATA[Category: branding | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/branding/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/branding/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -199,6 +199,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -222,12 +228,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title><![CDATA[Category: community | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/community/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/>
<updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id>
<author>
<name><![CDATA[Paulus Schoutsen]]></name>
</author>
<generator uri="http://octopress.org/">Octopress</generator>
<entry>
<title type="html"><![CDATA[Community Highlights]]></title>
<link href="https://home-assistant.io/blog/2015/12/05/community-highlights/"/>
<updated>2015-12-05T23:39:00-08:00</updated>
<id>https://home-assistant.io/blog/2015/12/05/community-highlights</id>
<content type="html"><![CDATA[<p>From time to time we come along things that are worth sharing with fellow Home Assisters. Here a list of some cool stuff from last week:</p>
<p>First is the public beta of <a href="https://letsencrypt.org/">Lets Encrypt</a>. Lets Encrypt is a new certificate authority that is free, automated and open. This means that it will now be very easy to secure your connection to Home Assistant while you are away from home. W1ll1am23 has written up <a href="https://automic.us/forum/viewtopic.php?f=4&amp;t=29">a guide how to get started</a>.</p>
<p>The next thing is a show-off of some of the cool stuff people do with Home Assistant. This is miniconfig talking to Home Assistant using the Amazon Echo!</p>
<div style="width: 560px; margin: 0 auto 16px;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9QQjklnSQKY" frameborder="0" allowfullscreen=""></iframe>
</div>
<p>And last but not least, Midwestern Mac did a <a href="http://www.midwesternmac.com/blogs/jeff-geerling/raspberry-pi-microsd-card">microSD card performance comparison</a> for the Raspberry Pi. If youre using a Pi, make sure to check it out!</p>
]]></content>
</entry>
</feed>

View file

@ -0,0 +1,279 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Category: community - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Category: community">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/blog/categories/community/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="Category: community">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/blog/categories/community/">
<meta property="og:type" content="website">
<meta property="og:description" content="Category: community">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<header>
<h1 class="title indent">
Category: Community
</h1>
</header>
<hr class="divider">
<div id="archive-list">
<h2>2015</h2>
<article>
<div class="grid">
<div class="grid__item one-fifth palm-one-whole">
<time datetime="2015-12-05T23:39:00-08:00" pubdate>
<span class='month'>Dec</span> <span class='day'>05</span>
</time>
</div>
<div class="grid__item four-fifths palm-one-whole">
<h1 class="gamma"><a href="/blog/2015/12/05/community-highlights/">Community Highlights</a></h1>
<footer class="meta">
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/community/'>community</a></li>
</ul>
</span>
</footer>
<hr class="divider">
</div>
</div>
</article>
</div>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="sharing aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Share this post</h1>
<a href="//twitter.com/share"
class="twitter-share-button"
data-url="https://home-assistant.io/blog/categories/community/"
data-counturl="https://home-assistant.io/blog/categories/community/" >Tweet</a>
<div class="g-plusone" data-size="standard"></div>
<div class="fb-share-button" style='top: -6px;'
data-href="https://home-assistant.io/blog/categories/community/"
data-layout="button_count">
</div>
</section>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '338291289691179',
xfbml : true,
version : 'v2.2'
});
};
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
<h1 class="title delta">Other Posts</h1>
<ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li>
<li class="post">
<a href="/blog/2015/11/16/zwave-switches-lights-and-honeywell-thermostats-now-supported/">0.8: Honeywell Thermostats, Orvibo switches and Z-Wave switches and lights </a>
</li>
<li class="post">
<a href="/blog/2015/10/26/firetv-and-radiotherm-now-supported/">0.7.6: Amazon FireTV, Radiotherm thermostats</a>
</li>
<li class="post">
<a href="/blog/2015/10/11/measure-temperature-with-esp8266-and-report-to-mqtt/">Report the temperature with ESP8266 to MQTT</a>
</li>
</ul>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
<script>
var disqus_shortname = 'home-assistant';
var disqus_script = 'count.js';
(function () {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}());
</script>
</body>
</html>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: component | Home Assistant]]></title> <title><![CDATA[Category: component | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/component/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/component/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -297,6 +297,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -320,12 +326,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: core | Home Assistant]]></title> <title><![CDATA[Category: core | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/core/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/core/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -231,6 +231,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -254,12 +260,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: esp8266 | Home Assistant]]></title> <title><![CDATA[Category: esp8266 | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/esp8266/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/esp8266/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -203,6 +203,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -226,12 +232,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: frontend | Home Assistant]]></title> <title><![CDATA[Category: frontend | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/frontend/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/frontend/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -233,6 +233,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -256,12 +262,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: how-to | Home Assistant]]></title> <title><![CDATA[Category: how-to | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/how-to/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/how-to/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -303,6 +303,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -326,12 +332,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: mqtt | Home Assistant]]></title> <title><![CDATA[Category: mqtt | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/mqtt/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/mqtt/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -237,6 +237,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -260,12 +266,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: release-notes | Home Assistant]]></title> <title><![CDATA[Category: release-notes | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/release-notes/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -649,6 +649,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -672,12 +678,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: survey | Home Assistant]]></title> <title><![CDATA[Category: survey | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/survey/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/survey/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -199,6 +199,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -222,12 +228,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: user-stories | Home Assistant]]></title> <title><![CDATA[Category: user-stories | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/user-stories/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/user-stories/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -231,6 +231,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -254,12 +260,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -4,7 +4,7 @@
<title><![CDATA[Category: website | Home Assistant]]></title> <title><![CDATA[Category: website | Home Assistant]]></title>
<link href="https://home-assistant.io/blog/categories/website/atom.xml" rel="self"/> <link href="https://home-assistant.io/blog/categories/website/atom.xml" rel="self"/>
<link href="https://home-assistant.io/"/> <link href="https://home-assistant.io/"/>
<updated>2015-11-27T20:10:47-08:00</updated> <updated>2015-12-06T01:00:53-08:00</updated>
<id>https://home-assistant.io/</id> <id>https://home-assistant.io/</id>
<author> <author>
<name><![CDATA[Paulus Schoutsen]]></name> <name><![CDATA[Paulus Schoutsen]]></name>

View file

@ -199,6 +199,12 @@
<ul class="divided"> <ul class="divided">
<li class="post">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</li>
<li class="post"> <li class="post">
<a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a> <a href="/blog/2015/11/22/survey-november-2015/">Survey November 2015</a>
</li> </li>
@ -222,12 +228,6 @@
</li> </li>
<li class="post">
<a href="/blog/2015/10/11/rfxtrx-blinkstick-and-snmp-support/">0.7.5: Blinkstick, SNMP, Telegram</a>
</li>
</ul> </ul>
</section> </section>

View file

@ -27,26 +27,23 @@
Survey November 2015 Community Highlights
November 22, 2015 December 6, 2015
Fabian Affolter Paulus Schoutsen
two minutes reading time less than one minute reading time
survey community
...">
...">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png"> <meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
@ -119,6 +116,57 @@
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2015/12/05/community-highlights/">Community Highlights</a>
</h1>
<div class="meta clearfix">
<time datetime="2015-12-05T23:39:00-08:00" pubdate data-updated="true"><i class="icon-calendar"></i> December 6, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> less than one minute reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/community/'>community</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2015/12/05/community-highlights/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p>From time to time we come along things that are worth sharing with fellow Home Assisters. Here a list of some cool stuff from last week:</p>
<p>First is the public beta of <a href="https://letsencrypt.org/">Lets Encrypt</a>. Lets Encrypt is a new certificate authority that is free, automated and open. This means that it will now be very easy to secure your connection to Home Assistant while you are away from home. W1ll1am23 has written up <a href="https://automic.us/forum/viewtopic.php?f=4&amp;t=29">a guide how to get started</a>.</p>
<p>The next thing is a show-off of some of the cool stuff people do with Home Assistant. This is miniconfig talking to Home Assistant using the Amazon Echo!</p>
<div style="width: 560px; margin: 0 auto 16px;">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9QQjklnSQKY" frameborder="0" allowfullscreen=""></iframe>
</div>
<p>And last but not least, Midwestern Mac did a <a href="http://www.midwesternmac.com/blogs/jeff-geerling/raspberry-pi-microsd-card">microSD card performance comparison</a> for the Raspberry Pi. If youre using a Pi, make sure to check it out!</p>
</div>
</article>
<hr>
<article class="listing"> <article class="listing">
<header> <header>
@ -667,57 +715,6 @@ Inspried by a <a href="https://github.com/balloob/home-assistant/issues/310">fea
</article> </article>
<hr> <hr>
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/">Using MQTT with Home Assistant</a>
</h1>
<div class="meta clearfix">
<time datetime="2015-09-11T02:19:38-07:00" pubdate data-updated="true"><i class="icon-calendar"></i> September 11, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Fabian Affolter</span>
<span><i class='icon-time'></i> nine minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/how-to/'>how-to</a></li>
<li><a class='category' href='/blog/categories/mqtt/'>mqtt</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p><img src="/images/supported_brands/mqtt.png" style="border:none; box-shadow: none; float: right;" height="80" /> <a href="https://en.wikipedia.org/wiki/MQTT">MQTT</a> support was added to Home Assistant recently. The <a href="https://home-assistant.io/components/mqtt/">MQTT component</a> will enable you to do all sort of things. Most likely you will use it to communicate with your devices. But Home Assistant doesnt care where the data is coming from or is limited to real hardware as long as there is MQTT support. This means that it doesnt matter if the data is coming from a human, a web service, or a device.</p>
<p>A great example is shown in a <a href="https://home-assistant.io/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/">Laundry Automation</a> post in this blog.</p>
<p>This post will give you a small overview of some other possibilities on how to use MQTT with Home Assistant.</p>
<a class="btn pull-right" href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<div class="pagination"> <div class="pagination">

View file

@ -27,21 +27,23 @@
0.7: Better UI and improved distribution Using MQTT with Home Assistant
August 31, 2015 September 11, 2015
Paulus Schoutsen Fabian Affolter
three minutes reading time nine minutes reading time
user-stor..."> how-to
...">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png"> <meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
@ -114,6 +116,57 @@
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/">Using MQTT with Home Assistant</a>
</h1>
<div class="meta clearfix">
<time datetime="2015-09-11T02:19:38-07:00" pubdate data-updated="true"><i class="icon-calendar"></i> September 11, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Fabian Affolter</span>
<span><i class='icon-time'></i> nine minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/how-to/'>how-to</a></li>
<li><a class='category' href='/blog/categories/mqtt/'>mqtt</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p><img src="/images/supported_brands/mqtt.png" style="border:none; box-shadow: none; float: right;" height="80" /> <a href="https://en.wikipedia.org/wiki/MQTT">MQTT</a> support was added to Home Assistant recently. The <a href="https://home-assistant.io/components/mqtt/">MQTT component</a> will enable you to do all sort of things. Most likely you will use it to communicate with your devices. But Home Assistant doesnt care where the data is coming from or is limited to real hardware as long as there is MQTT support. This means that it doesnt matter if the data is coming from a human, a web service, or a device.</p>
<p>A great example is shown in a <a href="https://home-assistant.io/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/">Laundry Automation</a> post in this blog.</p>
<p>This post will give you a small overview of some other possibilities on how to use MQTT with Home Assistant.</p>
<a class="btn pull-right" href="/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<article class="listing"> <article class="listing">
<header> <header>
@ -680,75 +733,6 @@ To update to the latest version, run <code>scripts/update</code>. Please report
</article> </article>
<hr> <hr>
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2015/03/22/release-notes/">Release notes for March 22, 2015</a>
</h1>
<div class="meta clearfix">
<time datetime="2015-03-22T01:21:00-07:00" pubdate data-updated="true"><i class="icon-calendar"></i> March 22, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> two minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/release-notes/'>release-notes</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2015/03/22/release-notes/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p>A new version of Home Assistant has just been pushed out. It contains bugfixes contributed by <a href="https://github.com/jamespcole">jamespcole</a>, <a href="https://github.com/andythigpen">andythigpen</a>, <a href="https://github.com/trainman419">trainman419</a> and <a href="https://github.com/balloob">me</a>. It also adds a bunch of great new features:</p>
<p><strong>Script</strong><br />
Andythigpen has contributed a script component. This allows users to create a sequence of service calls and delays. Scripts can be started using the service <code>script/turn_on</code> and interrupted using the service <code>script/turn_off</code>. A separate page has been added to the frontend to see the status of your scripts.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">script</span>:
<span class="comment"># Turns on the bedroom lights and then the living room lights 1 minute later</span>
<span class="key">wakeup</span>:
<span class="key">alias</span>: <span class="string"><span class="content">Wake Up</span></span>
<span class="key">sequence</span>:
- <span class="string"><span class="content">alias: Bedroom lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.bedroom</span></span>
- <span class="string"><span class="content">delay:</span><span class="content">
# supports seconds, milliseconds, minutes, hours, etc.
minutes: 1</span></span>
- <span class="string"><span class="content">alias: Living room lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.living_room</span></span>
</pre></div>
</div>
</div>
<a class="btn pull-right" href="/blog/2015/03/22/release-notes/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<div class="pagination"> <div class="pagination">

View file

@ -27,13 +27,13 @@
Release notes for March 11, 2015 Release notes for March 22, 2015
March 11, 2015 March 22, 2015
Paulus Schoutsen Paulus Schoutsen
two minutes reading time two minutes reading time
@ -115,6 +115,75 @@
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2015/03/22/release-notes/">Release notes for March 22, 2015</a>
</h1>
<div class="meta clearfix">
<time datetime="2015-03-22T01:21:00-07:00" pubdate data-updated="true"><i class="icon-calendar"></i> March 22, 2015</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> two minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/release-notes/'>release-notes</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2015/03/22/release-notes/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p>A new version of Home Assistant has just been pushed out. It contains bugfixes contributed by <a href="https://github.com/jamespcole">jamespcole</a>, <a href="https://github.com/andythigpen">andythigpen</a>, <a href="https://github.com/trainman419">trainman419</a> and <a href="https://github.com/balloob">me</a>. It also adds a bunch of great new features:</p>
<p><strong>Script</strong><br />
Andythigpen has contributed a script component. This allows users to create a sequence of service calls and delays. Scripts can be started using the service <code>script/turn_on</code> and interrupted using the service <code>script/turn_off</code>. A separate page has been added to the frontend to see the status of your scripts.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">script</span>:
<span class="comment"># Turns on the bedroom lights and then the living room lights 1 minute later</span>
<span class="key">wakeup</span>:
<span class="key">alias</span>: <span class="string"><span class="content">Wake Up</span></span>
<span class="key">sequence</span>:
- <span class="string"><span class="content">alias: Bedroom lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.bedroom</span></span>
- <span class="string"><span class="content">delay:</span><span class="content">
# supports seconds, milliseconds, minutes, hours, etc.
minutes: 1</span></span>
- <span class="string"><span class="content">alias: Living room lights on</span></span>
<span class="key">execute_service</span>: <span class="string"><span class="content">light.turn_on</span></span>
<span class="key">service_data</span>:
<span class="key">entity_id</span>: <span class="string"><span class="content">group.living_room</span></span>
</pre></div>
</div>
</div>
<a class="btn pull-right" href="/blog/2015/03/22/release-notes/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<article class="listing"> <article class="listing">
<header> <header>
@ -642,64 +711,6 @@ password=YOUR_PASSWORD
</article> </article>
<hr> <hr>
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/">Home Control, Automation &amp; the Smart Home</a>
</h1>
<div class="meta clearfix">
<time datetime="2014-12-26T10:23:13-08:00" pubdate data-updated="true"><i class="icon-calendar"></i> December 26, 2014</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> four minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/architecture/'>architecture</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p>The internet has been buzzing over the last year about home automation. A lot of different terms fly around like the internet of things, home automation and the smart home.<br />
This article will try to explain how they all relate.</p>
<p>The first thing to introduce is the <strong>Internet of Things</strong> (IoT). This refers to a new generation of devices that cannot only be controlled by humans via buttons or remotes but also provide an interface to communicate with other devices and applications. For example, an IoT-capable coffee machine could receive commands to create different types of coffee and be able to broadcast the amount of water left in its resevoir.</p>
<p>There is no widely adopted open standard for smart device communication. This prevents a lot of devices to communicate with one another. And even if they could, most devices are not designed to manage other devices. To solve this we need a device to be able to communicate with and manage all these connected devices. This device is called a <strong>hub</strong>.</p>
<p>As a bare minimum a hub has to keep track of the state of each device and should be able to control them if possible. For example, it has to know which lights are on or off and offer a way to control the lights. For a sensor it only has to know the value. A hub with these capabilities offers <strong>home control</strong>.</p>
<p class="img">
<a href="/images/screenshots/nexus_7_dashboard.png">
<img alt="Hub dashboard example" src="/images/screenshots/nexus_7_dashboard.png" />
</a>
Example of a hubs dashboard. Showing the state of 2 persons, 4 lights and the sun.
</p>
<a class="btn pull-right" href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<div class="pagination"> <div class="pagination">

View file

@ -27,24 +27,21 @@
Website launched! Home Control, Automation &amp; the Smart Home
December 18, 2014 December 26, 2014
Paulus Schoutsen Paulus Schoutsen
less than one minute reading time four minutes reading time
website arc...">
...">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png"> <meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
@ -117,6 +114,64 @@
<article class="listing">
<header>
<h1 class="beta">
<a href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/">Home Control, Automation &amp; the Smart Home</a>
</h1>
<div class="meta clearfix">
<time datetime="2014-12-26T10:23:13-08:00" pubdate data-updated="true"><i class="icon-calendar"></i> December 26, 2014</time>
<span class="byline author vcard"><i class='icon-user'></i> Paulus Schoutsen</span>
<span><i class='icon-time'></i> four minutes reading time</span>
<span>
<i class="icon-tags"></i>
<ul class="tags unstyled">
<li><a class='category' href='/blog/categories/architecture/'>architecture</a></li>
</ul>
</span>
<a class='comments'
href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/#disqus_thread"
>Comments</a>
</div>
</header>
<div class="entry-content clearfix">
<p>The internet has been buzzing over the last year about home automation. A lot of different terms fly around like the internet of things, home automation and the smart home.<br />
This article will try to explain how they all relate.</p>
<p>The first thing to introduce is the <strong>Internet of Things</strong> (IoT). This refers to a new generation of devices that cannot only be controlled by humans via buttons or remotes but also provide an interface to communicate with other devices and applications. For example, an IoT-capable coffee machine could receive commands to create different types of coffee and be able to broadcast the amount of water left in its resevoir.</p>
<p>There is no widely adopted open standard for smart device communication. This prevents a lot of devices to communicate with one another. And even if they could, most devices are not designed to manage other devices. To solve this we need a device to be able to communicate with and manage all these connected devices. This device is called a <strong>hub</strong>.</p>
<p>As a bare minimum a hub has to keep track of the state of each device and should be able to control them if possible. For example, it has to know which lights are on or off and offer a way to control the lights. For a sensor it only has to know the value. A hub with these capabilities offers <strong>home control</strong>.</p>
<p class="img">
<a href="/images/screenshots/nexus_7_dashboard.png">
<img alt="Hub dashboard example" src="/images/screenshots/nexus_7_dashboard.png" />
</a>
Example of a hubs dashboard. Showing the state of 2 persons, 4 lights and the sun.
</p>
<a class="btn pull-right" href="/blog/2014/12/26/home-control-home-automation-and-the-smart-home/#read-more">Read on &rarr;</a>
</div>
</article>
<hr>
<article class="listing"> <article class="listing">
<header> <header>

View file

@ -158,6 +158,9 @@
<li><a href='/components/mqtt/'> <li><a href='/components/mqtt/'>
MQTT MQTT
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/binary_sensor.mqtt/'> <li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor MQTT binary sensor
</a></li> </a></li>

View file

@ -163,6 +163,9 @@
<li><a href='/components/alarm_control_panel.mqtt/'> <li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel MQTT Alarm Control Panel
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/device_tracker.mqtt/'> <li><a href='/components/device_tracker.mqtt/'>
MQTT device tracker MQTT device tracker
</a></li> </a></li>

View file

@ -149,6 +149,9 @@
<li><a href='/components/alarm_control_panel.mqtt/'> <li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel MQTT Alarm Control Panel
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/binary_sensor.mqtt/'> <li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor MQTT binary sensor
</a></li> </a></li>

1
components/ecobee.html Normal file
View file

@ -0,0 +1 @@
<script>document.location = '/components/ecobee/';</script>

View file

@ -0,0 +1,221 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ecobee - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Instructions for how to integrate Ecobee thermostats and sensors within Home Assistant.">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/components/ecobee/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="Ecobee">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/components/ecobee/">
<meta property="og:type" content="article">
<meta property="og:description" content="Instructions for how to integrate Ecobee thermostats and sensors within Home Assistant.">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<header>
<h1 class="title indent">
Ecobee
</h1>
</header>
<hr class="divider">
<p>The Ecobee platform lets you control a thermostats and view sensor data from the <a href="https://ecobee.com">Ecobee</a> thermostat.</p>
<p>You will need to obtain an API key from ecobees <a href="https://www.ecobee.com/developers/">developer site</a> to use this component. The first time you run Home-Assistant with this component it will give you a PIN code that you need to authorize in the <a href="https://www.ecobee.com/consumerportal/index.html">ecobee consumer portal</a>. You can do this by clicking Add Application in the My Apps section in the sidebar.</p>
<p>To set it up, add the following information to your <code>configuration.yaml</code> file:</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="key">ecobee</span>:
<span class="key">api_key</span>: <span class="string"><span class="content">asdfghjklqwertyuiopzxcvbnm </span></span>
<span class="key">hold_temp</span>: <span class="string"><span class="content">True</span></span>
</pre></div>
</div>
</div>
<p>Configuration variables:</p>
<ul>
<li><strong>api_key</strong> (<em>Required</em>): Your Ecobee api key.</li>
<li><strong>hold_temp</strong> (<em>Optional</em>): True/False whether or not to hold changes indefinitely (True) or until the next scheduled event (False, default).</li>
</ul>
<p class="img">
<img src="/images/screenshots/ecobee-sensor-badges.png" />
<img src="/images/screenshots/ecobee-thermostat-card.png" />
</p>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="aside-module grid__item one-whole lap-one-half">
<div class='brand-logo-container section'>
<img src='/images/supported_brands/ecobee.png' />
</div>
<div class='section'>
<h1 class='title delta'>Related components</h1>
<ul class='divided'>
<li><a href='/components/sensor.ecobee/'>
Ecobee sensor
</a></li>
<li><a href='/components/thermostat.ecobee/'>
Ecobee thermostat
</a></li>
</ul>
</div>
<div class='section'>
<h1 class="title delta">Category Hub</h1>
<ul class='divided'>
<li>
Ecobee
</li>
<li>
<a href='/components/isy994/'>ISY994 Controller</a>
</li>
<li>
<a href='/components/mqtt/'>MQTT</a>
</li>
<li>
<a href='/components/modbus/'>Modbus</a>
</li>
<li>
<a href='/components/rfxtrx/'>RFXtrx</a>
</li>
<li>
<a href='/components/tellstick/'>TellStick</a>
</li>
<li>
<a href='/components/vera/'>Vera</a>
</li>
<li>
<a href='/components/verisure/'>Verisure</a>
</li>
<li>
<a href='/components/wink/'>Wink</a>
</li>
<li>
<a href='/components/zwave/'>Z-Wave</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>

View file

@ -158,6 +158,10 @@ Support for these components is provided by the Home Assistant community.
<a href='#motor' class="btn">Motor</a>
<a href='#notifications' class="btn">Notifications</a> <a href='#notifications' class="btn">Notifications</a>
@ -442,6 +446,42 @@ Support for these components is provided by the Home Assistant community.
<a href='/components/ecobee/' class='hub'>
<div class='img-container'>
<img src='/images/supported_brands/ecobee.png'>
</div>
<div class='title'>Ecobee</div>
<div class='category'>Hub</div>
</a>
<a href='/components/sensor.ecobee/' class='sensor'>
<div class='img-container'>
<img src='/images/supported_brands/ecobee.png'>
</div>
<div class='title'>Ecobee sensor</div>
<div class='category'>Sensor</div>
</a>
<a href='/components/thermostat.ecobee/' class='thermostat'>
<div class='img-container'>
<img src='/images/supported_brands/ecobee.png'>
</div>
<div class='title'>Ecobee thermostat</div>
<div class='category'>Thermostat</div>
</a>
<a href='/components/switch.edimax/' class='switch'> <a href='/components/switch.edimax/' class='switch'>
<div class='img-container'> <div class='img-container'>
@ -738,7 +778,7 @@ Support for these components is provided by the Home Assistant community.
<div class='img-container'> <div class='img-container'>
</div> </div>
<div class='title'>LimitlessLED</div> <div class='title'>LimitlessLED support</div>
<div class='category'>Light</div> <div class='category'>Light</div>
</a> </a>
@ -802,6 +842,18 @@ Support for these components is provided by the Home Assistant community.
<a href='/components/motor.mqtt/' class='motor'>
<div class='img-container'>
<img src='/images/supported_brands/mqtt.png'>
</div>
<div class='title'>MQTT Motor</div>
<div class='category'>Motor</div>
</a>
<a href='/components/binary_sensor.mqtt/' class='binary-sensor'> <a href='/components/binary_sensor.mqtt/' class='binary-sensor'>
<div class='img-container'> <div class='img-container'>
@ -922,6 +974,8 @@ Support for these components is provided by the Home Assistant community.
<a href='/components/media_player.mpd/' class='media-player'> <a href='/components/media_player.mpd/' class='media-player'>
<div class='img-container'> <div class='img-container'>

View file

@ -199,6 +199,9 @@ The ISY994 controller is manufactured by <a href="https://www.universal-devices.
<div class='section'> <div class='section'>
<h1 class="title delta">Category Hub</h1> <h1 class="title delta">Category Hub</h1>
<ul class='divided'> <ul class='divided'>
<li>
<a href='/components/ecobee/'>Ecobee</a>
</li>
<li> <li>
ISY994 Controller ISY994 Controller
</li> </li>

View file

@ -149,7 +149,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -108,6 +108,7 @@
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span> <div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">light</span>: <span class="key">light</span>:
<span class="key">platform</span>: <span class="string"><span class="content">hue</span></span> <span class="key">platform</span>: <span class="string"><span class="content">hue</span></span>
<span class="key">host</span>: <span class="string"><span class="content">DEVICE_IP_ADDRESS</span></span>
</pre></div> </pre></div>
</div> </div>
</div> </div>
@ -140,7 +141,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -140,7 +140,7 @@
Hyperion Hyperion
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -8,20 +8,20 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>LimitlessLED - Home Assistant</title> <title>LimitlessLED support - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen"> <meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Instructions how to setup LimitlessLED within Home Assistant."> <meta name="description" content="Instructions on how to setup LimitlessLED within Home Assistant.">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/components/light.limitlessled/"> <link rel="canonical" href="https://home-assistant.io/components/light.limitlessled/">
<meta property="fb:app_id" content="338291289691179"> <meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="LimitlessLED"> <meta property="og:title" content="LimitlessLED support">
<meta property="og:site_name" content="Home Assistant"> <meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/components/light.limitlessled/"> <meta property="og:url" content="https://home-assistant.io/components/light.limitlessled/">
<meta property="og:type" content="article"> <meta property="og:type" content="article">
<meta property="og:description" content="Instructions how to setup LimitlessLED within Home Assistant."> <meta property="og:description" content="Instructions on how to setup LimitlessLED within Home Assistant.">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png"> <meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
@ -93,94 +93,114 @@
<article class="page"> <article class="page">
<header> <header>
<h1 class="title indent"> <h1 class="title indent">
LimitlessLED LimitlessLED Support
</h1> </h1>
</header> </header>
<hr class="divider"> <hr class="divider">
<p>The limitlessled platform can control your <a href="http://www.limitlessled.com/">LimitlessLED</a> lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.</p> <p><code>limitlessled</code> can control your <a href="http://www.limitlessled.com/">LimitlessLED</a> lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.</p>
<p>To add limitlessled to your installation, add the following to your <code>configuration.yaml</code> file:</p> <h3>Setup</h3>
<p>Before configuring Home Assistant, make sure you can control your bulbs with the Milight mobile application. Discover your bridge(s) IP. You can do this via your router, or a mobile application like Fing (<a href="https://play.google.com/store/apps/details?id=com.overlook.android.fing&amp;hl=en">android</a>, <a href="https://itunes.apple.com/us/app/fing-network-scanner/id430921107?mt=8">itunes</a>). Keep in mind that LimitlessLED bulbs are controlled via groups. You cannot control an individual bulb via the bridge, unless it is in a group by itself. Note that you can assign an <code>rgbw</code> and <code>white</code> group to the same group number, effectively allowing 8 groups (4 <code>rgbw</code> and 4 <code>white</code>) per bridge.</p>
<p>To add <code>limitlessled</code> to your installation, add the following to your <code>configuration.yaml</code> file:</p>
<div class="highlighter-coderay"><div class="CodeRay"> <div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span> <div class="code"><pre><span class="key">light</span>:
<span class="key">light</span>:
<span class="key">platform</span>: <span class="string"><span class="content">limitlessled</span></span> <span class="key">platform</span>: <span class="string"><span class="content">limitlessled</span></span>
<span class="key">host</span>: <span class="string"><span class="content">IP_ADDRESS</span></span> <span class="key">bridges</span>:
<span class="key">group_1_name</span>: <span class="string"><span class="content">Living Room</span></span>
<span class="key">group_2_name</span>: <span class="string"><span class="content">Bedroom</span></span>
<span class="key">group_3_name</span>: <span class="string"><span class="content">Office</span></span>
<span class="key">group_4_name</span>: <span class="string"><span class="content">Kitchen</span></span>
</pre></div> </pre></div>
</div> </div>
</div> </div>
<p>Configuration variables:</p> <p>Next, list your bridges and groups. Heres an example. See the next section for a full explanaton of each configuration variable.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="key">light</span>:
<span class="key">platform</span>: <span class="string"><span class="content">limitlessled</span></span>
<span class="key">bridges</span>:
- <span class="string"><span class="content">host: 192.168.1.10</span></span>
<span class="key">version</span>: <span class="string"><span class="content">5</span></span>
<span class="key">port</span>: <span class="string"><span class="content">8899</span></span>
<span class="key">groups</span>:
- <span class="string"><span class="content">number: 1</span></span>
<span class="key">type</span>: <span class="string"><span class="content">rgbw</span></span>
<span class="key">name</span>: <span class="string"><span class="content">Bedroom</span></span>
- <span class="string"><span class="content">number: 2</span></span>
<span class="key">type</span>: <span class="string"><span class="content">white</span></span>
<span class="key">name</span>: <span class="string"><span class="content">Craft Room</span></span>
- <span class="string"><span class="content">number: 2</span></span>
<span class="key">type</span>: <span class="string"><span class="content">rgbw</span></span>
<span class="key">name</span>: <span class="string"><span class="content">Bathroom</span></span>
- <span class="string"><span class="content">host: 192.168.1.11</span></span>
<span class="key">groups</span>:
- <span class="string"><span class="content">number: 1</span></span>
<span class="key">type</span>: <span class="string"><span class="content">rgbw</span></span>
<span class="key">name</span>: <span class="string"><span class="content">Living Room &amp; Hall</span></span>
</pre></div>
</div>
</div>
<h3>Configuration variables</h3>
<ul> <ul>
<li><strong>host</strong> (<em>Required</em>): IP address of the device, eg. 192.168.1.32</li> <li><strong>bridges</strong> (<em>Required</em>): (list)
<li><strong>group_X_name</strong> (<em>Required</em>): Name of the group. Multiple entries with a consecutive number.</li> <ul>
<li><strong>host</strong> (<em>Required</em>): IP address of the device, eg. <code>192.168.1.32</code></li>
<li><strong>version</strong>: Bridge version (default is <code>5</code>). Dont use if you arent sure.</li>
<li><strong>port</strong>: Bridge port (default is <code>8899</code>). Normally not necessary to specify.</li>
<li><strong>groups</strong> (<em>Required</em>): (list)
<ul>
<li><strong>number</strong> (<em>Required</em>): Group number (<code>1</code>-<code>4</code>). Corresponds to the group number on the remote.</li>
<li><strong>name</strong> (<em>Required</em>): Any name youd like. Must be unique among all configured groups.</li>
<li><strong>type</strong>: Type of group. Choose either <code>rgbw</code> or <code>white</code>. <code>rgbw</code> is the default if you dont specify.</li>
</ul>
</li>
</ul>
</li>
</ul> </ul>
<h3>Properties</h3>
<p>Refer to the <a href="/components/light">light</a> documentation for general property usage, but keep in mind the following notes specific to LimitlessLED.</p>
<ul>
<li><strong>RGBW</strong>
<ul>
<li><em>Color</em>: There are 256 color possibilities along the LimitlessLED color spectrum. Color properties like saturation and lightness cant be used - only hue. The only exception is white (which may be warm or cold depending on the type of RGBW bulb). If you select a color with saturation or lightness, Home Assistant will calculate the nearest valid LimitlessLED color.</li>
<li><em>Brightness</em>: There are 25 brightness steps.</li>
</ul>
</li>
<li><strong>White</strong>
<ul>
<li>As you can observe on the Milight mobile application, you cannot select a specific brightness or temperature - you can only step each property up or down. There is no indication of which step you are on. This restriction, combined with the unreliable nature of LimitlessLED transmissions, means that setting white bulb properties is done on a best-effort basis. The only very reliable settings are the minimum and maximum of each property.</li>
<li><em>Temperature</em>: There are 10 temperature steps.</li>
<li><em>Brightness</em>: There are 10 brightness steps.</li>
</ul>
</li>
<li><strong>Transitions</strong>
<ul>
<li>If a transition time is set, the group will transition between the current settings and the target settings for the duration specified. Transitions from or to white are not possible - the color will change immediately.</li>
</ul>
</li>
</ul>
<h3>Initialization &amp; Synchronization</h3>
<p>When starting Home Assistant, your LimitlessLED bulbs will be set to known default values. This ensures a consistent user interface and uninterrupted turning on/off. If you control your LimitlessLED lights via the Milight mobile application or other means while Home Assistant is running, Home Assistant can not track those changes and you may observe unexpected behavior. This is due to a LimitlessLED limitation.</p>
</article> </article>
</div> </div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="aside-module grid__item one-whole lap-one-half">
<div class='brand-logo-container section'>
</div>
<div class='section'>
This is a platform for
<a href='/components/light/'>the Lights component</a>.
</div>
<div class='section'>
<h1 class="title delta">Category Light</h1>
<ul class='divided'>
<li>
<a href='/components/light.blinksticklight/'>Blinkstick</a>
</li>
<li>
<a href='/components/light.hyperion/'>Hyperion</a>
</li>
<li>
LimitlessLED
</li>
<li>
<a href='/components/light.mqtt/'>MQTT light</a>
</li>
<li>
<a href='/components/light.hue/'>Philips Hue</a>
</li>
<li>
<a href='/components/light.rfxtrx/'>RFXtrx light</a>
</li>
<li>
<a href='/components/light.tellstick/'>TellStick light</a>
</li>
<li>
<a href='/components/light.vera/'>Vera light</a>
</li>
<li>
<a href='/components/light.wink/'>Wink light</a>
</li>
<li>
<a href='/components/light.zwave/'>Z-Wave light</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div> </div>
</div> </div>

View file

@ -194,6 +194,9 @@
<li><a href='/components/alarm_control_panel.mqtt/'> <li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel MQTT Alarm Control Panel
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/binary_sensor.mqtt/'> <li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor MQTT binary sensor
</a></li> </a></li>
@ -218,7 +221,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
MQTT light MQTT light

View file

@ -165,7 +165,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -155,7 +155,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -175,7 +175,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -149,7 +149,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -144,7 +144,7 @@
<a href='/components/light.hyperion/'>Hyperion</a> <a href='/components/light.hyperion/'>Hyperion</a>
</li> </li>
<li> <li>
<a href='/components/light.limitlessled/'>LimitlessLED</a> <a href='/components/light.limitlessled/'>LimitlessLED support</a>
</li> </li>
<li> <li>
<a href='/components/light.mqtt/'>MQTT light</a> <a href='/components/light.mqtt/'>MQTT light</a>

View file

@ -224,7 +224,7 @@ The light component supports multiple entries in <code>configuration.yaml</code>
Hyperion Hyperion
</a></li> </a></li>
<li><a href='/components/light.limitlessled/'> <li><a href='/components/light.limitlessled/'>
LimitlessLED LimitlessLED support
</a></li> </a></li>
<li><a href='/components/light.mqtt/'> <li><a href='/components/light.mqtt/'>
MQTT light MQTT light

View file

@ -188,6 +188,9 @@
<div class='section'> <div class='section'>
<h1 class="title delta">Category Hub</h1> <h1 class="title delta">Category Hub</h1>
<ul class='divided'> <ul class='divided'>
<li>
<a href='/components/ecobee/'>Ecobee</a>
</li>
<li> <li>
<a href='/components/isy994/'>ISY994 Controller</a> <a href='/components/isy994/'>ISY994 Controller</a>
</li> </li>

View file

@ -0,0 +1,221 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>MQTT Motor - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Instructions how to integrate MQTT motorized devices into Home Assistant.">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/components/motor.mqtt/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="MQTT Motor">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/components/motor.mqtt/">
<meta property="og:type" content="article">
<meta property="og:description" content="Instructions how to integrate MQTT motorized devices into Home Assistant.">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<header>
<h1 class="title indent">
MQTT Motor
</h1>
</header>
<hr class="divider">
<p>This platform enables the possibility to control an MQTT motorized device. The device state will be updated only after receiving the a new state from <code>state_topic</code>. If these messages are published with RETAIN flag, the MQTT device will receive an instant state update after subscription and will start with correct state. Otherwise, the initial state will be <code>unknown</code>.<br />
There is a state attribute that stores the relative position of the device, where 0% means the device is <code>closed</code> and all other intermediate positions means the device is <code>open</code>.</p>
<div class="highlighter-coderay"><div class="CodeRay">
<div class="code"><pre><span class="comment"># Example configuration.yaml entry</span>
<span class="key">motor</span>:
<span class="key">platform</span>: <span class="string"><span class="content">mqtt</span></span>
<span class="key">name</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">Bedroom Rollershutter</span><span class="delimiter">&quot;</span></span>
<span class="key">state_topic</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">home/bedroom/rollershutter</span><span class="delimiter">&quot;</span></span>
<span class="key">command_topic</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">home/bedroom/rollershutter/set</span><span class="delimiter">&quot;</span></span>
<span class="key">qos</span>: <span class="string"><span class="content">0</span></span>
<span class="key">payload_open</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">OPEN</span><span class="delimiter">&quot;</span></span>
<span class="key">payload_close</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">CLOSE</span><span class="delimiter">&quot;</span></span>
<span class="key">payload_stop</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">STOP</span><span class="delimiter">&quot;</span></span>
</pre></div>
</div>
</div>
<p>Configuration variables:</p>
<ul>
<li>
<p><strong>command_topic</strong> (<em>Required</em>): The MQTT topic to publish commands to control the motor.</p>
</li>
<li><strong>name</strong> (<em>Optional</em>): The name of the motorized device. Default is MQTT Motor.</li>
<li><strong>state_topic</strong> (<em>Optional</em>): The MQTT topic subscribed to receive state updates. If not defined, the motor will be stateless, that is, no information about current position or open/closed. If defined, the received payload must be a integer between 0 and 100, that represents the percentage for fully closed and fully open, respectively.</li>
<li><strong>qos</strong> (<em>Optional</em>): The maximum QoS level of the state topic. Default is 0. This QoS will also be used to publishing messages.</li>
<li><strong>payload_open</strong> (<em>Optional</em>): The payload to open the motorized device. Default is “OPEN”.</li>
<li><strong>payload_close</strong> (<em>Optional</em>): The payload to close the motorized device. Default is “CLOSE”.</li>
<li><strong>payload_stop</strong> (<em>Optional</em>): The payload to stop the motorized device. Default is “STOP”.</li>
<li><strong>state_format</strong> (<em>Optional</em>): The state format to parse. Default is None (no parser).</li>
</ul>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="aside-module grid__item one-whole lap-one-half">
<div class='brand-logo-container section'>
<img src='/images/supported_brands/mqtt.png' />
</div>
<div class='section'>
This is a platform for
<a href='/components/motor/'>the Motors component</a>.
</div>
<div class='section'>
<h1 class='title delta'>Related components</h1>
<ul class='divided'>
<li><a href='/components/mqtt/'>
MQTT
</a></li>
<li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel
</a></li>
<li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor
</a></li>
<li><a href='/components/device_tracker.mqtt/'>
MQTT device tracker
</a></li>
<li><a href='/components/light.mqtt/'>
MQTT light
</a></li>
<li><a href='/components/sensor.mqtt/'>
MQTT sensor
</a></li>
<li><a href='/components/switch.mqtt/'>
MQTT switch
</a></li>
</ul>
</div>
<div class='section'>
<h1 class="title delta">Category Motor</h1>
<ul class='divided'>
<li>
MQTT Motor
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>

162
components/motor/index.html Normal file
View file

@ -0,0 +1,162 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Motors - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Instructions how to integrate motorized devices into Home Assistant.">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/components/motor/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="Motors">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/components/motor/">
<meta property="og:type" content="article">
<meta property="og:description" content="Instructions how to integrate motorized devices into Home Assistant.">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<header>
<h1 class="title indent">
Motors
</h1>
</header>
<hr class="divider">
<p>Home Assistant can give you an interface to control any motorized device that opens and closes. This includes roller shutters, garage doors, gates, blinds, shades, curtains, awnings, etc.</p>
<p>The following platforms are supported:</p>
<ul>
<li><a href="/components/motor.mqtt/">MQTT</a></li>
</ul>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="aside-module grid__item one-whole lap-one-half">
<div class='brand-logo-container section'>
</div>
<h1 class='title delta'>Platforms</h1>
<ul class='divided'>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
</ul>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>

View file

@ -272,6 +272,9 @@ Home Assistant will automatically load the correct certificate if you connect to
<li><a href='/components/alarm_control_panel.mqtt/'> <li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel MQTT Alarm Control Panel
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/binary_sensor.mqtt/'> <li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor MQTT binary sensor
</a></li> </a></li>
@ -292,6 +295,9 @@ Home Assistant will automatically load the correct certificate if you connect to
<div class='section'> <div class='section'>
<h1 class="title delta">Category Hub</h1> <h1 class="title delta">Category Hub</h1>
<ul class='divided'> <ul class='divided'>
<li>
<a href='/components/ecobee/'>Ecobee</a>
</li>
<li> <li>
<a href='/components/isy994/'>ISY994 Controller</a> <a href='/components/isy994/'>ISY994 Controller</a>
</li> </li>

View file

@ -177,6 +177,9 @@ light.a8__0123454041230170
<div class='section'> <div class='section'>
<h1 class="title delta">Category Hub</h1> <h1 class="title delta">Category Hub</h1>
<ul class='divided'> <ul class='divided'>
<li>
<a href='/components/ecobee/'>Ecobee</a>
</li>
<li> <li>
<a href='/components/isy994/'>ISY994 Controller</a> <a href='/components/isy994/'>ISY994 Controller</a>
</li> </li>

View file

@ -115,14 +115,14 @@
<span class="key">unit_of_measurement</span>: <span class="string"><span class="content">'°C'</span></span> <span class="key">unit_of_measurement</span>: <span class="string"><span class="content">'°C'</span></span>
- <span class="string"><span class="content">name: humidity</span></span> - <span class="string"><span class="content">name: humidity</span></span>
<span class="key">unit_of_measurement</span>: <span class="string"><span class="content">'%'</span></span> <span class="key">unit_of_measurement</span>: <span class="string"><span class="content">'%'</span></span>
<span class="key">pins</span>: <span class="key">pins</span>:
<span class="key">A0</span>: <span class="key">A0</span>:
<span class="key">name</span>: <span class="string"><span class="content">Pin 0 analog</span></span> <span class="key">name</span>: <span class="string"><span class="content">Pin 0 analog</span></span>
<span class="key">unit_of_measurement</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">ca</span><span class="delimiter">&quot;</span></span> <span class="key">unit_of_measurement</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">ca</span><span class="delimiter">&quot;</span></span>
<span class="key">correction_factor</span>: <span class="string"><span class="content">0.01</span></span> <span class="key">correction_factor</span>: <span class="string"><span class="content">0.01</span></span>
<span class="key">decimal_places</span>: <span class="string"><span class="content">1</span></span> <span class="key">decimal_places</span>: <span class="string"><span class="content">1</span></span>
<span class="key">3</span>: <span class="key">3</span>:
<span class="key">name</span>: <span class="string"><span class="content">Pin 3 digital</span></span> <span class="key">name</span>: <span class="string"><span class="content">Pin 3 digital</span></span>
</pre></div> </pre></div>
</div> </div>
</div> </div>
@ -220,6 +220,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -201,6 +201,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -244,6 +244,9 @@ print(response.json()[<span class="string"><span class="delimiter">'</span><span
<li> <li>
Command line sensor Command line sensor
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -144,6 +144,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -0,0 +1 @@
<script>document.location = '/components/sensor.ecobee/';</script>

View file

@ -0,0 +1,236 @@
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ecobee sensor - Home Assistant</title>
<meta name="author" content="Paulus Schoutsen">
<meta name="description" content="Instructions how to setup the Ecobee sensors within Home Assistant.">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="https://home-assistant.io/components/sensor.ecobee/">
<meta property="fb:app_id" content="338291289691179">
<meta property="og:title" content="Ecobee sensor">
<meta property="og:site_name" content="Home Assistant">
<meta property="og:url" content="https://home-assistant.io/components/sensor.ecobee/">
<meta property="og:type" content="article">
<meta property="og:description" content="Instructions how to setup the Ecobee sensors within Home Assistant.">
<meta property="og:image" content="https://home-assistant.io/images/home-assistant-logo-2164x2164.png">
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet">
<link href="/atom.xml" rel="alternate" title="Home Assistant" type="application/atom+xml">
<link rel='shortcut icon' href='/images/favicon.ico' />
<link rel='icon' type='image/png' href='/images/favicon-192x192.png' sizes='192x192' />
</head>
<body >
<header>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item three-tenths lap-two-sixths palm-one-whole ha-title">
<a href="/" class="site-title">
<img width='40' src='/images/favicon-192x192.png'> Home Assistant
</a>
</div>
<div class="grid__item seven-tenths lap-four-sixths palm-one-whole">
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" class="toggle" data-open="Main Menu" data-close="Close Menu"></label>
<ul class="menu pull-right">
<li>
<a href="/getting-started/">Getting started</a>
<ul>
<li><a href='/getting-started/'>Installing Home Assistant</a></li>
<li><a href='/getting-started/configuration/'>Configuration basics</a></li>
<li><a href='/getting-started/devices/'>Adding devices</a></li>
<li><a href='/getting-started/presence-detection/'>Presence detection</a></li>
<li><a href='/getting-started/automation/'>Automation</a></li>
<li><a href='/cookbook'>Configuration cookbook</a></li>
</ul>
</li>
<li><a href='/components/'>Components</a></li>
<li>
<a href="/developers/">Developers</a>
<ul>
<li><a href="/developers/architecture/">Architecture</a></li>
<li><a href="/developers/frontend/">Frontend development</a></li>
<li><a href="/developers/creating_components/">
Creating components
</a></li>
<li><a href="/developers/add_new_platform/">
Adding platform support
</a></li>
<li><a href="/developers/api/">API</a></li>
<li><a href="/developers/credits/">Credits</a></li>
</ul>
</li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/help/">Need help?</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<div class="grid-wrapper">
<div class="grid grid-center">
<div class="grid__item two-thirds lap-one-whole palm-one-whole">
<article class="page">
<header>
<h1 class="title indent">
Ecobee sensor
</h1>
</header>
<hr class="divider">
<p>To get your Ecobee sensors working with Home Assistant, follow the instructions for the general <a href="/components/ecobee/">Ecobee component</a>.</p>
</article>
</div>
<aside id="sidebar" class="grid__item one-third lap-one-whole palm-one-whole">
<div class="grid">
<section class="aside-module grid__item one-whole lap-one-half">
<div class='brand-logo-container section'>
<img src='/images/supported_brands/ecobee.png' />
</div>
<div class='section'>
<h1 class='title delta'>Related components</h1>
<ul class='divided'>
<li><a href='/components/ecobee/'>
Ecobee
</a></li>
<li><a href='/components/thermostat.ecobee/'>
Ecobee thermostat
</a></li>
</ul>
</div>
<div class='section'>
<h1 class="title delta">Category Sensor</h1>
<ul class='divided'>
<li>
<a href='/components/sensor.bitcoin/'>Bitcoin</a>
</li>
<li>
<a href='/components/sensor.cpuspeed/'>CPU speed</a>
</li>
<li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li>
<li>
Ecobee sensor
</li>
<li>
<a href='/components/sensor.efergy/'>Efergy sensor</a>
</li>
<li>
<a href='/components/sensor.glances/'>Glances</a>
</li>
<li>
<a href='/components/sensor.mqtt/'>MQTT sensor</a>
</li>
<li>
<a href='/components/sensor.modbus/'>Modbus sensor</a>
</li>
<li>
<a href='/components/sensor.mysensors/'>MySensors sensor</a>
</li>
<li>
<a href='/components/sensor.rest/'>RESTful sensor</a>
</li>
<li>
<a href='/components/sensor.rfxtrx/'>RFXtrx sensor</a>
</li>
<li>
<a href='/components/sensor.sabnzbd/'>SABnzbd</a>
</li>
<li>
<a href='/components/sensor.swiss_public_transport/'>Swiss Public Transport</a>
</li>
<li>
<a href='/components/sensor.systemmonitor/'>System Monitor</a>
</li>
<li>
<a href='/components/sensor.temper/'>TEMPer sensor</a>
</li>
<li>
<a href='/components/sensor.tellstick/'>TellStick sensor</a>
</li>
<li>
<a href='/components/sensor.time_date/'>Time & Date</a>
</li>
<li>
<a href='/components/sensor.transmission/'>Transmission sensor</a>
</li>
<li>
<a href='/components/sensor.vera/'>Vera sensor</a>
</li>
<li>
<a href='/components/sensor.wink/'>Wink sensor</a>
</li>
<li>
<a href='/components/sensor.worldclock/'>Worldclock</a>
</li>
<li>
<a href='/components/sensor.zwave/'>Z-Wave sensor</a>
</li>
<li>
<a href='/components/sensor.arest/'>aREST sensor</a>
</li>
</ul>
</div>
</section>
</div>
</aside>
</div>
</div>
<footer>
<div class="grid-wrapper">
<div class="grid">
<div class="grid__item">
<p class="copyright">
<span class="credit">Powered by <a href='http://jekyllrb.com/'>Jekyll</a> and the <a href='https://github.com/coogie/oscailte'>Oscalite theme</a>. Hosted by <a href='https://pages.github.com/'>GitHub</a> and served by <a href='https://cloudflare.com'>CloudFlare</a>.</span>
</p>
</div>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->
<script>
var _gaq=[['_setAccount','UA-57927901-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>

View file

@ -160,6 +160,9 @@ negative number of minutes your timezone is ahead/behind UTC time.</li>
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
Efergy sensor Efergy sensor
</li> </li>

View file

@ -201,6 +201,9 @@ Glances web server started on http://0.0.0.0:61208/
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -197,6 +197,9 @@ Each named register will create an integer sensor and each named bit will create
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -112,6 +112,7 @@
<span class="key">name</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">MQTT Sensor</span><span class="delimiter">&quot;</span></span> <span class="key">name</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">MQTT Sensor</span><span class="delimiter">&quot;</span></span>
<span class="key">qos</span>: <span class="string"><span class="content">0</span></span> <span class="key">qos</span>: <span class="string"><span class="content">0</span></span>
<span class="key">unit_of_measurement</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">°C</span><span class="delimiter">&quot;</span></span> <span class="key">unit_of_measurement</span>: <span class="string"><span class="delimiter">&quot;</span><span class="content">°C</span><span class="delimiter">&quot;</span></span>
</pre></div> </pre></div>
</div> </div>
</div> </div>
@ -148,6 +149,9 @@
<li><a href='/components/alarm_control_panel.mqtt/'> <li><a href='/components/alarm_control_panel.mqtt/'>
MQTT Alarm Control Panel MQTT Alarm Control Panel
</a></li> </a></li>
<li><a href='/components/motor.mqtt/'>
MQTT Motor
</a></li>
<li><a href='/components/binary_sensor.mqtt/'> <li><a href='/components/binary_sensor.mqtt/'>
MQTT binary sensor MQTT binary sensor
</a></li> </a></li>
@ -174,6 +178,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -158,6 +158,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -236,6 +236,9 @@ Make sure that the URL matches exactly your endpoint or resource.
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

View file

@ -151,6 +151,9 @@
<li> <li>
<a href='/components/sensor.command_sensor/'>Command line sensor</a> <a href='/components/sensor.command_sensor/'>Command line sensor</a>
</li> </li>
<li>
<a href='/components/sensor.ecobee/'>Ecobee sensor</a>
</li>
<li> <li>
<a href='/components/sensor.efergy/'>Efergy sensor</a> <a href='/components/sensor.efergy/'>Efergy sensor</a>
</li> </li>

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