Site updated at 2017-11-11 08:44:59 UTC
This commit is contained in:
parent
9f2b7f571f
commit
b6368d34b8
227 changed files with 2066 additions and 1370 deletions
209
atom.xml
209
atom.xml
|
@ -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>2017-11-10T20:03:45+00:00</updated>
|
<updated>2017-11-11T08:35:37+00:00</updated>
|
||||||
<id>https://home-assistant.io/</id>
|
<id>https://home-assistant.io/</id>
|
||||||
<author>
|
<author>
|
||||||
<name><![CDATA[Home Assistant]]></name>
|
<name><![CDATA[Home Assistant]]></name>
|
||||||
|
@ -13,6 +13,199 @@
|
||||||
<generator uri="http://octopress.org/">Octopress</generator>
|
<generator uri="http://octopress.org/">Octopress</generator>
|
||||||
|
|
||||||
|
|
||||||
|
<entry>
|
||||||
|
<title type="html"><![CDATA[Home Assistant and The Things Network (TTN)]]></title>
|
||||||
|
<link href="https://home-assistant.io/blog/2017/11/10/ttn-with-mqtt/"/>
|
||||||
|
<updated>2017-11-10T12:00:00+00:00</updated>
|
||||||
|
<id>https://home-assistant.io/blog/2017/11/10/ttn-with-mqtt</id>
|
||||||
|
<content type="html"><![CDATA[<p>The Home Assistant integration for <a href="https://www.thethingsnetwork.org/">The Things Network (TTN)</a> uses their <a href="https://www.thethingsnetwork.org/docs/applications/storage/">Storage</a> feature to get the sensor data. The easiest way to observe TTN sensors would be <a href="https://www.thethingsnetwork.org/docs/applications/mqtt/">MQTT</a> as it doesn’t requires any additional configuration.</p>
|
||||||
|
|
||||||
|
<p>At the moment Home Assistant only supports one <a href="/docs/mqtt/">MQTT broker</a>. This means that you can’t subscribe to topics which are located on different brokers.</p>
|
||||||
|
|
||||||
|
<!--more-->
|
||||||
|
|
||||||
|
<h2><a class="title-link" name="subscribe-to-the-ttn-broker" href="#subscribe-to-the-ttn-broker"></a> Subscribe to the TTN Broker</h2>
|
||||||
|
|
||||||
|
<p>To check what your devices are sending, subscribe to the topic <code class="highlighter-rouge">+/devices/+/up</code> with a command-line tool like <code class="highlighter-rouge">mosquitto_sub</code>. The <code class="highlighter-rouge"><Region></code> is the postfix of the <strong>Handler</strong> entry in your <strong>Application overview</strong>. <code class="highlighter-rouge"><AppID></code> is the <strong>Application ID</strong> and <code class="highlighter-rouge"><AppKey></code> is your access key.</p>
|
||||||
|
|
||||||
|
<p>``bash
|
||||||
|
$ mosquitto_sub -v -h <Region>.thethings.network -t '+/devices/+/up' -u '<AppID>' -P '<AppKey>'
|
||||||
|
{
|
||||||
|
"app_id": "ha-demo",
|
||||||
|
"dev_id": "device01",
|
||||||
|
"hardware_serial": "AJDJENDNHRBFBBT",
|
||||||
|
"port": 1,
|
||||||
|
[...]</AppKey></AppID></Region></p>
|
||||||
|
<div class="highlighter-rouge"><pre class="highlight"><code>
|
||||||
|
The payload contains details about the device itself and the sensor data. The sensor data is stored in `payload_fields`. Depending on the device configuration it may contain a single value or multiple values.
|
||||||
|
|
||||||
|
## <a class='title-link' name='the-relay' href='#the-relay'></a> The relay
|
||||||
|
|
||||||
|
To be able to work locally with the MQTT data that is received from the devices connected to TTN, we need to transfer it to the local broker. With this simple script below all messages from a given device are re-published on your local MQTT broker after they are received. Modify the script with your details as outlined in the previous section.
|
||||||
|
|
||||||
|
```python
|
||||||
|
"""Relay MQTT messages from The Things Network to a local MQTT broker."""
|
||||||
|
import paho.mqtt.client as mqtt
|
||||||
|
import paho.mqtt.publish as publish
|
||||||
|
|
||||||
|
DEVICE_NAME = '<DeviceID>'
|
||||||
|
|
||||||
|
TTN_BROKER = '<Region>.thethings.network'
|
||||||
|
TTN_USERNAME = '<AppID>'
|
||||||
|
TTN_PASSWORD = '<AppKey>'
|
||||||
|
TTN_TOPIC = '+/devices/{}/up'.format(DEVICE_NAME)
|
||||||
|
|
||||||
|
LOCAL_BROKER = '192.168.0.2'
|
||||||
|
LOCAL_TOPIC = 'home/ttn/garden_temp'
|
||||||
|
|
||||||
|
|
||||||
|
def on_connect(client, userdata, flags, rc):
|
||||||
|
"""Subscribe to topic after connection to broker is made."""
|
||||||
|
print("Connected with result code", str(rc))
|
||||||
|
client.subscribe(TTN_TOPIC)
|
||||||
|
|
||||||
|
|
||||||
|
def on_message(client, userdata, msg):
|
||||||
|
"""Relay message to a different broker."""
|
||||||
|
publish.single(
|
||||||
|
LOCAL_TOPIC, payload=msg.payload, qos=0, retain=False,
|
||||||
|
hostname=LOCAL_BROKER, port=1883, client_id='ttn-local',
|
||||||
|
keepalive=60, will=None, auth=None, tls=None, protocol=mqtt.MQTTv311)
|
||||||
|
|
||||||
|
|
||||||
|
client = mqtt.Client()
|
||||||
|
client.username_pw_set(TTN_USERNAME, password=TTN_PASSWORD)
|
||||||
|
client.on_connect = on_connect
|
||||||
|
client.on_message = on_message
|
||||||
|
client.connect(TTN_BROKER, 1883, 60)
|
||||||
|
|
||||||
|
client.loop_forever()
|
||||||
|
</code></pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>Save it and run it. As soon as a MQTT message is received from your device you should see it on your local broker (here 192.168.0.2) if you subscribe to <code class="highlighter-rouge">#</code> or the topic given in the script above <code class="highlighter-rouge">home/ttn/garden_temp</code>.</p>
|
||||||
|
|
||||||
|
<div class="language-bash highlighter-rouge"><pre class="highlight"><code><span class="gp">$ </span>mosquitto_sub -h 192.168.0.2 -t <span class="s2">"#"</span> -d
|
||||||
|
</code></pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2><a class="title-link" name="the-sensor" href="#the-sensor"></a> The sensor</h2>
|
||||||
|
|
||||||
|
<p>All we would need now, is a <a href="/components/sensor.mqtt/"><code class="highlighter-rouge">mqtt</code> sensor</a> with a <code class="highlighter-rouge">value_template</code>. With a sophisticated custom sensor it would be possible to displaying a little more than just the state. The device is only sending the temperature <code class="highlighter-rouge"><span class="p">{</span><span class="nt">"temperature"</span><span class="p">:</span><span class="w"> </span><span class="mf">7.5</span><span class="p">}</span></code> but there are other details available which the sensor should show.</p>
|
||||||
|
|
||||||
|
<div class="language-python highlighter-rouge"><pre class="highlight"><code><span class="s">"""Support for The Things Network MQTT sensors."""</span>
|
||||||
|
<span class="kn">import</span> <span class="nn">asyncio</span>
|
||||||
|
<span class="kn">from</span> <span class="nn">datetime</span> <span class="kn">import</span> <span class="n">timedelta</span>
|
||||||
|
<span class="kn">import</span> <span class="nn">json</span>
|
||||||
|
<span class="kn">import</span> <span class="nn">logging</span>
|
||||||
|
|
||||||
|
<span class="kn">import</span> <span class="nn">voluptuous</span> <span class="kn">as</span> <span class="nn">vol</span>
|
||||||
|
|
||||||
|
<span class="kn">import</span> <span class="nn">homeassistant.components.mqtt</span> <span class="kn">as</span> <span class="nn">mqtt</span>
|
||||||
|
<span class="kn">from</span> <span class="nn">homeassistant.components.mqtt</span> <span class="kn">import</span> <span class="n">CONF_STATE_TOPIC</span>
|
||||||
|
<span class="kn">from</span> <span class="nn">homeassistant.const</span> <span class="kn">import</span> <span class="n">CONF_NAME</span><span class="p">,</span> <span class="n">CONF_UNIT_OF_MEASUREMENT</span>
|
||||||
|
<span class="kn">from</span> <span class="nn">homeassistant.core</span> <span class="kn">import</span> <span class="n">callback</span>
|
||||||
|
<span class="kn">import</span> <span class="nn">homeassistant.helpers.config_validation</span> <span class="kn">as</span> <span class="nn">cv</span>
|
||||||
|
<span class="kn">from</span> <span class="nn">homeassistant.helpers.entity</span> <span class="kn">import</span> <span class="n">Entity</span>
|
||||||
|
|
||||||
|
<span class="n">_LOGGER</span> <span class="o">=</span> <span class="n">logging</span><span class="o">.</span><span class="n">getLogger</span><span class="p">(</span><span class="n">__name__</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="n">DEFAULT_NAME</span> <span class="o">=</span> <span class="s">'MQTT TTN Sensor'</span>
|
||||||
|
<span class="n">DEFAULT_FORCE_UPDATE</span> <span class="o">=</span> <span class="bp">False</span>
|
||||||
|
<span class="n">DEPENDENCIES</span> <span class="o">=</span> <span class="p">[</span><span class="s">'mqtt'</span><span class="p">]</span>
|
||||||
|
|
||||||
|
<span class="n">PLATFORM_SCHEMA</span> <span class="o">=</span> <span class="n">mqtt</span><span class="o">.</span><span class="n">MQTT_RO_PLATFORM_SCHEMA</span><span class="o">.</span><span class="n">extend</span><span class="p">({</span>
|
||||||
|
<span class="n">vol</span><span class="o">.</span><span class="n">Optional</span><span class="p">(</span><span class="n">CONF_NAME</span><span class="p">,</span> <span class="n">default</span><span class="o">=</span><span class="n">DEFAULT_NAME</span><span class="p">):</span> <span class="n">cv</span><span class="o">.</span><span class="n">string</span><span class="p">,</span>
|
||||||
|
<span class="n">vol</span><span class="o">.</span><span class="n">Optional</span><span class="p">(</span><span class="n">CONF_UNIT_OF_MEASUREMENT</span><span class="p">):</span> <span class="n">cv</span><span class="o">.</span><span class="n">string</span><span class="p">,</span>
|
||||||
|
|
||||||
|
<span class="p">})</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="nd">@asyncio.coroutine</span>
|
||||||
|
<span class="k">def</span> <span class="nf">async_setup_platform</span><span class="p">(</span><span class="n">hass</span><span class="p">,</span> <span class="n">config</span><span class="p">,</span> <span class="n">async_add_devices</span><span class="p">,</span> <span class="n">discovery_info</span><span class="o">=</span><span class="bp">None</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Set up the TTN MQTT Sensor."""</span>
|
||||||
|
<span class="n">async_add_devices</span><span class="p">([</span><span class="n">MqttTtnSensor</span><span class="p">(</span>
|
||||||
|
<span class="n">config</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">CONF_NAME</span><span class="p">),</span> <span class="n">config</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">CONF_STATE_TOPIC</span><span class="p">),</span>
|
||||||
|
<span class="n">config</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="n">CONF_UNIT_OF_MEASUREMENT</span><span class="p">))</span>
|
||||||
|
<span class="p">])</span>
|
||||||
|
|
||||||
|
|
||||||
|
<span class="k">class</span> <span class="nc">MqttTtnSensor</span><span class="p">(</span><span class="n">Entity</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Representation of a sensor."""</span>
|
||||||
|
|
||||||
|
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">name</span><span class="p">,</span> <span class="n">state_topic</span><span class="p">,</span> <span class="n">unit_of_measurement</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Initialize the sensor."""</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_state</span> <span class="o">=</span> <span class="bp">None</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_name</span> <span class="o">=</span> <span class="n">name</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_unit_of_measurement</span> <span class="o">=</span> <span class="n">unit_of_measurement</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_attributes</span> <span class="o">=</span> <span class="p">{}</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_state_topic</span> <span class="o">=</span> <span class="n">state_topic</span>
|
||||||
|
|
||||||
|
<span class="k">def</span> <span class="nf">async_added_to_hass</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Subscribe to MQTT events."""</span>
|
||||||
|
<span class="nd">@callback</span>
|
||||||
|
<span class="k">def</span> <span class="nf">message_received</span><span class="p">(</span><span class="n">topic</span><span class="p">,</span> <span class="n">payload</span><span class="p">,</span> <span class="n">qos</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Handle new MQTT messages."""</span>
|
||||||
|
|
||||||
|
<span class="k">try</span><span class="p">:</span>
|
||||||
|
<span class="n">data</span> <span class="o">=</span> <span class="n">json</span><span class="o">.</span><span class="n">loads</span><span class="p">(</span><span class="n">payload</span><span class="p">)</span>
|
||||||
|
<span class="k">except</span> <span class="n">json</span><span class="o">.</span><span class="n">JSONDecodeError</span><span class="p">:</span>
|
||||||
|
<span class="n">_LOGGER</span><span class="o">.</span><span class="n">error</span><span class="p">(</span><span class="s">"Invalid JSON data received: </span><span class="si">%</span><span class="s">s"</span><span class="p">,</span> <span class="n">data</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_state</span> <span class="o">=</span> <span class="n">data</span><span class="p">[</span><span class="s">'payload_fields'</span><span class="p">][</span><span class="nb">next</span><span class="p">(</span>
|
||||||
|
<span class="nb">iter</span><span class="p">(</span><span class="n">data</span><span class="p">[</span><span class="s">'payload_fields'</span><span class="p">]))]</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">_attributes</span> <span class="o">=</span> <span class="n">data</span>
|
||||||
|
<span class="k">del</span> <span class="bp">self</span><span class="o">.</span><span class="n">_attributes</span><span class="p">[</span><span class="s">'payload_fields'</span><span class="p">]</span>
|
||||||
|
<span class="k">del</span> <span class="bp">self</span><span class="o">.</span><span class="n">_attributes</span><span class="p">[</span><span class="s">'metadata'</span><span class="p">]</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">async_schedule_update_ha_state</span><span class="p">()</span>
|
||||||
|
|
||||||
|
<span class="k">return</span> <span class="n">mqtt</span><span class="o">.</span><span class="n">async_subscribe</span><span class="p">(</span>
|
||||||
|
<span class="bp">self</span><span class="o">.</span><span class="n">hass</span><span class="p">,</span> <span class="bp">self</span><span class="o">.</span><span class="n">_state_topic</span><span class="p">,</span> <span class="n">message_received</span><span class="p">,</span> <span class="mi">0</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="nd">@property</span>
|
||||||
|
<span class="k">def</span> <span class="nf">should_poll</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""No polling needed."""</span>
|
||||||
|
<span class="k">return</span> <span class="bp">False</span>
|
||||||
|
|
||||||
|
<span class="nd">@property</span>
|
||||||
|
<span class="k">def</span> <span class="nf">name</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Return the name of the sensor."""</span>
|
||||||
|
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_name</span>
|
||||||
|
|
||||||
|
<span class="nd">@property</span>
|
||||||
|
<span class="k">def</span> <span class="nf">unit_of_measurement</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Return the unit this state is expressed in."""</span>
|
||||||
|
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_unit_of_measurement</span>
|
||||||
|
|
||||||
|
<span class="nd">@property</span>
|
||||||
|
<span class="k">def</span> <span class="nf">state_attributes</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Return the attributes of the entity."""</span>
|
||||||
|
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_attributes</span>
|
||||||
|
|
||||||
|
<span class="nd">@property</span>
|
||||||
|
<span class="k">def</span> <span class="nf">state</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
|
||||||
|
<span class="s">"""Return the state of the entity."""</span>
|
||||||
|
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_state</span>
|
||||||
|
</code></pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>Store it in <code class="highlighter-rouge"><config_dir>/custom_components/sensor/mqtt_ttn.py</code> and it will handle the messages.</p>
|
||||||
|
|
||||||
|
<h2><a class="title-link" name="the-configuration" href="#the-configuration"></a> The configuration</h2>
|
||||||
|
|
||||||
|
<p>Now create the <a href="/components/sensor.mqtt/"><code class="highlighter-rouge">mqtt_ttn</code> sensor</a> entry for your device.</p>
|
||||||
|
|
||||||
|
<div class="highlighter-rouge"><pre class="highlight"><code>sensor:
|
||||||
|
- platform: mqtt_ttn
|
||||||
|
name: TTN Sensor
|
||||||
|
state_topic: "home/ttn/garden_temp"
|
||||||
|
</code></pre>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p>This solution is not production-ready, scalable or stable but it could fill the gape till Home Assistant is able to connect to multiple MQTT brokers. If you have multiple devices relay all messages to your local broker and add an configuration variable to <code class="highlighter-rouge">mqtt_ttn</code> sensor which allows you to select the device.</p>
|
||||||
|
]]></content>
|
||||||
|
</entry>
|
||||||
|
|
||||||
<entry>
|
<entry>
|
||||||
<title type="html"><![CDATA[Translating Home Assistant]]></title>
|
<title type="html"><![CDATA[Translating Home Assistant]]></title>
|
||||||
<link href="https://home-assistant.io/blog/2017/11/05/frontend-translations/"/>
|
<link href="https://home-assistant.io/blog/2017/11/05/frontend-translations/"/>
|
||||||
|
@ -1988,20 +2181,6 @@ Screenshot of the new customize editor.
|
||||||
<li>Fix SET_TEMPERATURE_SCHEMA in climate component (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8879">#8879</a>) (<a href="https://home-assistant.io/components/climate/">climate docs</a>)</li>
|
<li>Fix SET_TEMPERATURE_SCHEMA in climate component (<a href="https://github.com/MartinHjelmare">@MartinHjelmare</a> - <a href="https://github.com/home-assistant/home-assistant/pull/8879">#8879</a>) (<a href="https://home-assistant.io/components/climate/">climate docs</a>)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
]]></content>
|
|
||||||
</entry>
|
|
||||||
|
|
||||||
<entry>
|
|
||||||
<title type="html"><![CDATA[Home Assistant Podcast #5]]></title>
|
|
||||||
<link href="https://home-assistant.io/blog/2017/08/01/hasspodcast-ep-5/"/>
|
|
||||||
<updated>2017-08-01T00:01:00+00:00</updated>
|
|
||||||
<id>https://home-assistant.io/blog/2017/08/01/hasspodcast-ep-5</id>
|
|
||||||
<content type="html"><![CDATA[<p>We cover off AppDaemon/HADashboard and all the fun stuff introduced in 0.49 and 0.50.</p>
|
|
||||||
|
|
||||||
<p>Show notes available on the <a href="https://hasspodcast.io/ha005/">Home Assistant Podcast Website</a></p>
|
|
||||||
|
|
||||||
<p><a href="https://hasspodcast.io/ha005/">Listen online</a></p>
|
|
||||||
|
|
||||||
]]></content>
|
]]></content>
|
||||||
</entry>
|
</entry>
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -140,9 +143,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -162,6 +162,9 @@ This article will try to explain how they all relate.</p>
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -174,9 +177,6 @@ This article will try to explain how they all relate.</p>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -152,6 +152,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -164,9 +167,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -135,6 +135,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -147,9 +150,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -139,6 +139,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -151,9 +154,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -145,6 +145,9 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -157,9 +160,6 @@ Home Assistant now supports <code class="highlighter-rouge">--open-ui</code> and
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -150,6 +150,9 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -162,9 +165,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -136,6 +136,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -148,9 +151,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -130,6 +130,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -142,9 +145,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -133,6 +133,9 @@ The old logo, the new detailed logo and the new simple logo.
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -145,9 +148,6 @@ The old logo, the new detailed logo and the new simple logo.
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -158,6 +158,9 @@ An initial version of voice control for Home Assistant has landed. The current i
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -170,9 +173,6 @@ An initial version of voice control for Home Assistant has landed. The current i
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -194,6 +194,9 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -206,9 +209,6 @@ I (Paulus) have contributed a scene component. A user can create scenes that cap
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -202,6 +202,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -214,9 +217,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -146,6 +146,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -158,9 +161,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -216,6 +216,9 @@ Before diving into the newly supported devices and services, I want to highlight
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -228,9 +231,6 @@ Before diving into the newly supported devices and services, I want to highlight
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -262,6 +262,9 @@ This switch platform allows you to control your motion detection setting on your
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -274,9 +277,6 @@ This switch platform allows you to control your motion detection setting on your
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -226,6 +226,9 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -238,9 +241,6 @@ Fabian has added support for <a href="https://forecast.io/">Forecast.io</a> to g
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -209,6 +209,9 @@ Support for Temper temperature sensors has been contributed by <a href="https://
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -221,9 +224,6 @@ Support for Temper temperature sensors has been contributed by <a href="https://
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -146,6 +146,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -158,9 +161,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -246,6 +246,9 @@ The automation and script syntax here is using a deprecated and no longer suppor
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -258,9 +261,6 @@ The automation and script syntax here is using a deprecated and no longer suppor
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -207,6 +207,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -219,9 +222,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -284,6 +284,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -296,9 +299,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -274,6 +274,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -286,9 +289,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -173,6 +173,9 @@ Glances web server started on http://0.0.0.0:61208/
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -185,9 +188,6 @@ Glances web server started on http://0.0.0.0:61208/
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -169,6 +169,9 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -181,9 +184,6 @@ Automation has gotten a lot of love. It now supports conditions, multiple trigge
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -152,6 +152,9 @@ Map in Home Assistant showing two people and three zones (home, school, work)
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -164,9 +167,6 @@ Map in Home Assistant showing two people and three zones (home, school, work)
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -337,6 +337,9 @@ Home Assistant will keep track of historical values and allow you to integrate i
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -349,9 +352,6 @@ Home Assistant will keep track of historical values and allow you to integrate i
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -142,6 +142,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -154,9 +157,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -159,6 +159,9 @@ This makes more sense as most people run Home Assistant as a daemon</p>
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -171,9 +174,6 @@ This makes more sense as most people run Home Assistant as a daemon</p>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -157,6 +157,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -169,9 +172,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -184,6 +184,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -196,9 +199,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -135,6 +135,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -147,9 +150,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -143,6 +143,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -155,9 +158,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -197,6 +197,9 @@ name: binary_sensor
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -209,9 +212,6 @@ name: binary_sensor
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -164,6 +164,9 @@ This is where we’ll configure our task, so select the plus icon to select an a
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -176,9 +179,6 @@ This is where we’ll configure our task, so select the plus icon to select an a
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -150,6 +150,9 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -162,9 +165,6 @@ Philips Hue FAQ entries regarding 3rd party light bulbs.
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -192,6 +192,9 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -204,9 +207,6 @@ sudo docker run -it --rm -p 80:80 --name certbot <span class="se">\</span>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -167,6 +167,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -179,9 +182,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -158,6 +158,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -170,9 +173,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -147,6 +147,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -159,9 +162,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -161,6 +161,9 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -173,9 +176,6 @@ Example of the new views in the frontend. <a href="/components/group/">Learn mor
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -281,6 +281,9 @@ Z-Wave light bulb |
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -293,9 +296,6 @@ Z-Wave light bulb |
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -255,6 +255,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -267,9 +270,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -166,6 +166,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -178,9 +181,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -220,6 +220,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -232,9 +235,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -163,6 +163,9 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -175,9 +178,6 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -165,6 +165,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -177,9 +180,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -166,6 +166,9 @@ player state attributes. This change affects automations, scripts and scenes.</l
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -178,9 +181,6 @@ player state attributes. This change affects automations, scripts and scenes.</l
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -174,6 +174,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -186,9 +189,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -134,6 +134,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -146,9 +149,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -137,6 +137,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -149,9 +152,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -146,6 +146,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -158,9 +161,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -132,6 +132,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -144,9 +147,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -144,6 +144,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -156,9 +159,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -166,6 +166,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -178,9 +181,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -208,6 +208,9 @@ For example, my wife works next door - and I couldn’t detect whether she’s a
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -220,9 +223,6 @@ For example, my wife works next door - and I couldn’t detect whether she’s a
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -132,6 +132,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -144,9 +147,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -206,6 +206,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -218,9 +221,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -132,6 +132,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -144,9 +147,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -138,6 +138,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -150,9 +153,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -162,6 +162,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -174,9 +177,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -135,6 +135,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -147,9 +150,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -236,6 +236,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -248,9 +251,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -144,6 +144,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -156,9 +159,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -176,6 +176,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -188,9 +191,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -148,6 +148,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -160,9 +163,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -170,6 +170,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -182,9 +185,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -216,6 +216,9 @@ target_dir /tmp
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -228,9 +231,6 @@ target_dir /tmp
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -171,6 +171,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -183,9 +186,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -161,6 +161,9 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -173,9 +176,6 @@ Over a year ago I participated in the <a href="https://www.kickstarter.com/proje
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -167,6 +167,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -179,9 +182,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -204,6 +204,9 @@ SQLite version 3.11.0 2016-02-15 17:29:24
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -216,9 +219,6 @@ SQLite version 3.11.0 2016-02-15 17:29:24
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -171,6 +171,9 @@ One of the graphs created with this tutorial.
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -183,9 +186,6 @@ One of the graphs created with this tutorial.
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -251,6 +251,9 @@ If a module is missing then you need to download it from the <a href="https://gi
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -263,9 +266,6 @@ If a module is missing then you need to download it from the <a href="https://gi
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -183,6 +183,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -195,9 +198,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -215,6 +215,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -227,9 +230,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -210,6 +210,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -222,9 +225,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -183,6 +183,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -195,9 +198,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -221,6 +221,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -233,9 +236,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -133,6 +133,9 @@ Heatmap
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -145,9 +148,6 @@ Heatmap
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -282,6 +282,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -294,9 +297,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -209,6 +209,9 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -221,9 +224,6 @@ So, part 1 of <a href="/blog/2016/07/28/esp8266-and-micropython-part1/">ESP8266
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -211,6 +211,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -223,9 +226,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -216,6 +216,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -228,9 +231,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -137,6 +137,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -149,9 +152,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -145,6 +145,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -157,9 +160,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -227,6 +227,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -239,9 +242,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -399,6 +399,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -411,9 +414,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -155,6 +155,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -167,9 +170,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -223,6 +223,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -235,9 +238,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -184,6 +184,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -196,9 +199,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -245,6 +245,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -257,9 +260,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -198,6 +198,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -210,9 +213,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -136,6 +136,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -148,9 +151,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -146,6 +146,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -158,9 +161,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -215,6 +215,9 @@ You have to note:
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -227,9 +230,6 @@ You have to note:
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -138,6 +138,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -150,9 +153,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -175,6 +175,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -187,9 +190,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -261,6 +261,9 @@
|
||||||
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
||||||
<h1 class="title delta">Recent Posts</h1>
|
<h1 class="title delta">Recent Posts</h1>
|
||||||
<ul class="divided">
|
<ul class="divided">
|
||||||
|
<li class="post">
|
||||||
|
<a href="/blog/2017/11/10/ttn-with-mqtt/">Home Assistant and The Things Network (TTN)</a>
|
||||||
|
</li>
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
<a href="/blog/2017/11/05/frontend-translations/">Translating Home Assistant</a>
|
||||||
</li>
|
</li>
|
||||||
|
@ -273,9 +276,6 @@
|
||||||
<li class="post">
|
<li class="post">
|
||||||
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
<a href="/blog/2017/10/28/demo/">Home Assistant Demo</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="post">
|
|
||||||
<a href="/blog/2017/10/23/simple-analog-sensor/">Serial analog sensor</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue