diff --git a/atom.xml b/atom.xml index 9d6971afa5..f2c53d1791 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ @@ -101,6 +101,276 @@ Inspried by a fea

Glances has a couple of optional dependencies which are extenting the range of provided information. This means that it would be possible to get details about the RAID system, HDD temperature, IP addresses, sensors, etc., please create a Pull request with your additions or a Feature request if you want see more details in your Home Assistant frontend.

+]]> + + + + <![CDATA[Home Assistant meets IFTTT]]> + + 2015-09-13T09:28:00-07:00 + https://home-assistant.io/blog/2015/09/13/home-assistant-meets-ifttt +

Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +@sfam to integrate with IFTTT. IFTTT stands for If This, Then That and is a +webservice that integrates with almost every possible webservice out there. Adding Home +Assistant to this mix means Home Assistant can connect with all via IFTTT.

+ +

It is now possible to disable your irregation system if it is going to be cloudy tomorrow or tweet +if your smoke alarm goes off.

+ + + + +

+ +

+ + + + +

Head over to the setup instructions to get started with IFTTT. Click the +read more button for some example recipes.

+ + + + + + + + + +

In each of the following examples, make sure to replace the XXX in the url with your correct +host address and api password.

+ + + + +

Turn off irregation system when not needed

+ + + + +

+ +

+ + + + +

Maker channel setup:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Field Value
URL http://xxx.xxx.xxx.xxx:8123/api/services/switch/turn_off?api_password=xxxxxxxx
METHOD POST
CONTENT TYPE application/json
BODY { “entity_id”: “switch.irrigation” }
+ + + + +

Tweet when important events happen

+ + + + +

+ +

+ + + + +

This will tweet a message when a MQTT message is received that the smoke alarm has been triggered. +Setup Maker channel with event name HA_FIRE_ALARM and Twitter channel to tweet the message in +value1.

+ + + + +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+
# Configuration.yaml entry
+automation:
+  alias: Post a tweet when fire alarm is triggered
+
+  platform: mqtt
+  mqtt_topic: home/alarm/fire
+  mqtt_payload: 'on'
+
+  execute_service: ifttt.trigger
+  service_data: {"event":"HA_FIRE_ALARM", "value1":"The fire alarm just triggered!"}
+
+ + + + +

Turn on lights when I get home

+ + + + +

+ +

+ + + + +

Maker channel setup:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Field Value
URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
METHOD POST
CONTENT TYPE application/json
BODY { “entity_id”: “light.kitchen” }
+ + + + +

Flash lights when a new PR comes in for Home Assistant

+ + + + +

+ +

+ + + + +

Maker channel setup:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Field Value
URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
METHOD POST
CONTENT TYPE application/json
BODY { “entity_id”: “group.all_lights”, “flash”:“yes” }
+ + + + +

Fire events when pressing the DO button

+ + + + +

+ +

+ + + + +

Maker channel setup:

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Field Value
URL http://xxx.xxx.xxx.xxx:8123/api/events/do_button_pressed?api_password=xxxxxxxx
METHOD POST
CONTENT TYPE application/json
+ + + ]]>
@@ -2216,27 +2486,6 @@ Home Assistant now supports --open-ui and --demo-mode username=YOUR_USERNAME password=YOUR_PASSWORD -]]> - - - - <![CDATA[Bootstrapping your setup with Discovery]]> - - 2015-01-11T21:49:08-08:00 - https://home-assistant.io/blog/2015/01/11/bootstrapping-your-setup-with-discovery - Most people do not like configuring things. Things just have to work, out of the box. Reaching this scenario is the goal of what we are about to introduce: our new discovery component.

- -

The discovery component will scan the WiFi network from time to time for connected zeroconf/mDNS and uPnP devices. The intial introduction is mainly focussed on getting the right architecture in place and discovers Belkin WeMo switches and Google Chromecasts connected to your network. When found, it will load and notify the appropritate component and it will be ready to use within seconds.

- -

Most devices still require some sort of interaction from the user after being discovered - be it a button being pressed or some sort of authentication. This is a challenge that will be solved in the future.

- -

To enable the discovery component, add the following to your home-assistant.conf:

- -
1
-
[discovery]
- - -

A new discovery section has been added to the Adding a new platform page with instructions how to make your platform discoverable.

]]>
diff --git a/blog/2014/12/18/website-launched/index.html b/blog/2014/12/18/website-launched/index.html index 634b1b10ab..e4fca0b2a1 100644 --- a/blog/2014/12/18/website-launched/index.html +++ b/blog/2014/12/18/website-launched/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -218,6 +219,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -235,12 +242,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html index 0a0697f302..ec9799133a 100644 --- a/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html +++ b/blog/2014/12/26/home-control-home-automation-and-the-smart-home/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -280,6 +281,12 @@ This article will try to explain how they all relate.

    +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -297,12 +304,6 @@ This article will try to explain how they all relate.

    - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html index aad75e04c7..5694230735 100644 --- a/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html +++ b/blog/2015/01/04/hey-pushbullet-nice-talking-to-you/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -262,6 +263,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -279,12 +286,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html index bdda4e5630..ae1cd5f67a 100644 --- a/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html +++ b/blog/2015/01/11/bootstrapping-your-setup-with-discovery/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -230,6 +231,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -247,12 +254,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/01/13/nest-in-da-house/index.html b/blog/2015/01/13/nest-in-da-house/index.html index bda42feba1..61cbf39f1f 100644 --- a/blog/2015/01/13/nest-in-da-house/index.html +++ b/blog/2015/01/13/nest-in-da-house/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -237,6 +238,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -254,12 +261,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/01/24/release-notes/index.html b/blog/2015/01/24/release-notes/index.html index e6846992e6..94da1b1167 100644 --- a/blog/2015/01/24/release-notes/index.html +++ b/blog/2015/01/24/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -242,6 +243,12 @@ Home Assistant now supports --open-ui and --demo-mode +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -259,12 +266,6 @@ Home Assistant now supports --open-ui and --demo-mode - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/02/08/looking-at-the-past/index.html b/blog/2015/02/08/looking-at-the-past/index.html index 381617d3e0..8bb126a003 100644 --- a/blog/2015/02/08/looking-at-the-past/index.html +++ b/blog/2015/02/08/looking-at-the-past/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -260,6 +261,12 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -277,12 +284,6 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/02/24/streaming-updates/index.html b/blog/2015/02/24/streaming-updates/index.html index b0aac8ee3a..738a0a40b9 100644 --- a/blog/2015/02/24/streaming-updates/index.html +++ b/blog/2015/02/24/streaming-updates/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -238,6 +239,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -255,12 +262,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html index b3aa76cb98..e082d90fd8 100644 --- a/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html +++ b/blog/2015/03/01/home-assistant-migrating-to-yaml/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -225,6 +226,12 @@ YAML allows the use of lists, which should make the configuration file a bit mor +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -242,12 +249,6 @@ YAML allows the use of lists, which should make the configuration file a bit mor - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/03/08/new-logo/index.html b/blog/2015/03/08/new-logo/index.html index b44c924393..1a69919901 100644 --- a/blog/2015/03/08/new-logo/index.html +++ b/blog/2015/03/08/new-logo/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -226,6 +227,12 @@ The old logo, the new detailed logo and the new simple logo. +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -243,12 +250,6 @@ The old logo, the new detailed logo and the new simple logo. - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/03/11/release-notes/index.html b/blog/2015/03/11/release-notes/index.html index f784620583..c9c1dc6ce5 100644 --- a/blog/2015/03/11/release-notes/index.html +++ b/blog/2015/03/11/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -272,6 +273,12 @@ An initial version of voice control for Home Assistant has landed. The current i +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -289,12 +296,6 @@ An initial version of voice control for Home Assistant has landed. The current i - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/03/22/release-notes/index.html b/blog/2015/03/22/release-notes/index.html index 734cf82a5e..3553b2ccdf 100644 --- a/blog/2015/03/22/release-notes/index.html +++ b/blog/2015/03/22/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -345,6 +346,12 @@ James Cole has also contributed support for the +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -362,12 +369,6 @@ James Cole has also contributed support for the - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/04/25/release-notes/index.html b/blog/2015/04/25/release-notes/index.html index ed7d8d0cc9..c42f6e8b9d 100644 --- a/blog/2015/04/25/release-notes/index.html +++ b/blog/2015/04/25/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -361,6 +362,12 @@ James has also contributed support for integrating Transmission into Home Assist +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -378,12 +385,6 @@ James has also contributed support for integrating Transmission into Home Assist - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/05/09/utc-time-zone-awareness/index.html b/blog/2015/05/09/utc-time-zone-awareness/index.html index a6dfb70ba3..1a08fc2e31 100644 --- a/blog/2015/05/09/utc-time-zone-awareness/index.html +++ b/blog/2015/05/09/utc-time-zone-awareness/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -250,6 +251,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -267,12 +274,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/05/14/release-notes/index.html b/blog/2015/05/14/release-notes/index.html index 5715e34796..4f37940f35 100644 --- a/blog/2015/05/14/release-notes/index.html +++ b/blog/2015/05/14/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -387,6 +388,12 @@ Before diving into the newly supported devices and services, I want to highlight +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -404,12 +411,6 @@ Before diving into the newly supported devices and services, I want to highlight - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/06/10/release-notes/index.html b/blog/2015/06/10/release-notes/index.html index bc2834c8c6..73a9352d65 100644 --- a/blog/2015/06/10/release-notes/index.html +++ b/blog/2015/06/10/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -466,6 +467,12 @@ This switch platform allows you to control your motion detection setting on your +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -483,12 +490,6 @@ This switch platform allows you to control your motion detection setting on your - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html index 911e3125b7..f2437a6188 100644 --- a/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html +++ b/blog/2015/07/11/ip-cameras-arduino-kodi-efergy-support/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -410,6 +411,12 @@ Fabian has added support for Forecast.io to g +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -427,12 +434,6 @@ Fabian has added support for Forecast.io to g - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html b/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html index d189d631ac..a4dcfca8ce 100644 --- a/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html +++ b/blog/2015/08/09/mqtt-raspberry-pi-squeezebox-asuswrt-support/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -373,6 +374,12 @@ Support for Temper temperature sensors has been contributed by + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -390,12 +397,6 @@ Support for Temper temperature sensors has been contributed by - Verisure devices and modern TP-Link routers now supported - - - diff --git a/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html b/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html index b397120241..a5bb7d8a8c 100644 --- a/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html +++ b/blog/2015/08/17/verisure-and-modern-tp-link-router-support/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -251,6 +252,12 @@ Home Assistant support to integrate your Ver +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -268,8 +275,6 @@ Home Assistant support to integrate your Ver - - diff --git a/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html b/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html index db63075a49..9c0f4fd8cd 100644 --- a/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html +++ b/blog/2015/08/26/laundry-automation-with-moteino-mqtt-and-home-assistant/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -435,6 +436,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -448,12 +455,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html b/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html index 3dc025f2b0..44dc04cc50 100644 --- a/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html +++ b/blog/2015/08/31/version-7-revamped-ui-and-improved-distribution/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -381,6 +382,12 @@ or AM2302 device.

    +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -394,12 +401,6 @@ or AM2302 device.

    - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html b/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html index 4603cc6f24..11c52f12e3 100644 --- a/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html +++ b/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -520,6 +521,12 @@ The MQTT support was added to H +
  • + Home Assistant meets IFTTT +
  • + + +
  • @@ -533,12 +540,6 @@ The MQTT support was added to H
  • - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/2015/09/13/home-assistant-meets-ifttt/index.html b/blog/2015/09/13/home-assistant-meets-ifttt/index.html new file mode 100644 index 0000000000..d65522029d --- /dev/null +++ b/blog/2015/09/13/home-assistant-meets-ifttt/index.html @@ -0,0 +1,571 @@ + + + + + + + + + + + + Home Assistant meets IFTTT - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + +
    + + +
    +
    + +

    Home Assistant meets IFTTT

    + + + +
    + + + + + + + + + + + + + + + + + + + three minutes reading time + + + + + + + + + Comments + +
    + +
    + + + + +

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +@sfam to integrate with IFTTT. IFTTT stands for If This, Then That and is a +webservice that integrates with almost every possible webservice out there. Adding Home +Assistant to this mix means Home Assistant can connect with all via IFTTT.

    + +

    It is now possible to disable your irregation system if it is going to be cloudy tomorrow or tweet +if your smoke alarm goes off.

    + + + + +

    + +

    + + + + +

    Head over to the setup instructions to get started with IFTTT. Click the +read more button for some example recipes.

    + + + + + + + + + +

    In each of the following examples, make sure to replace the XXX in the url with your correct +host address and api password.

    + + + + +

    Turn off irregation system when not needed

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/switch/turn_off?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “switch.irrigation” }
    + + + + +

    Tweet when important events happen

    + + + + +

    + +

    + + + + +

    This will tweet a message when a MQTT message is received that the smoke alarm has been triggered. +Setup Maker channel with event name HA_FIRE_ALARM and Twitter channel to tweet the message in +value1.

    + + + + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +
    # Configuration.yaml entry
    +automation:
    +  alias: Post a tweet when fire alarm is triggered
    +
    +  platform: mqtt
    +  mqtt_topic: home/alarm/fire
    +  mqtt_payload: 'on'
    +
    +  execute_service: ifttt.trigger
    +  service_data: {"event":"HA_FIRE_ALARM", "value1":"The fire alarm just triggered!"}
    +
    + + + + +

    Turn on lights when I get home

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “light.kitchen” }
    + + + + +

    Flash lights when a new PR comes in for Home Assistant

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “group.all_lights”, “flash”:“yes” }
    + + + + +

    Fire events when pressing the DO button

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/events/do_button_pressed?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    + + + + + +
    + + +
    +

    Comments

    +
    +
    +
    + + +
    + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html b/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html index c3be9c26ec..c6d638e1a1 100644 --- a/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html +++ b/blog/2015/09/18/monitoring-with-glances-and-home-assistant/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -296,6 +297,12 @@ Inspried by a fea +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -313,12 +320,6 @@ Inspried by a fea - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/archives/index.html b/blog/archives/index.html index 8fb9e29379..580fd8b22c 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -22,7 +22,7 @@ - + @@ -53,9 +53,10 @@ Getting started
  • @@ -148,6 +149,45 @@ + + + +
  • - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 4d9d31bd1f..952c265775 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/index.html b/blog/categories/architecture/index.html index 0b1eb873a8..6017279bb7 100644 --- a/blog/categories/architecture/index.html +++ b/blog/categories/architecture/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -212,6 +213,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -229,12 +236,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index 2d32574cbf..e3f7de7bce 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: branding | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/branding/index.html b/blog/categories/branding/index.html index 0e662bd62c..7c2cb6923b 100644 --- a/blog/categories/branding/index.html +++ b/blog/categories/branding/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -212,6 +213,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -229,12 +236,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index ca8b6bfd58..8ac4d02eef 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/component/index.html b/blog/categories/component/index.html index f3824d81b3..022b3d5500 100644 --- a/blog/categories/component/index.html +++ b/blog/categories/component/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -325,6 +326,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -342,12 +349,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/core/atom.xml b/blog/categories/core/atom.xml index 08344e94fb..a5002b7fcb 100644 --- a/blog/categories/core/atom.xml +++ b/blog/categories/core/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: core | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/core/index.html b/blog/categories/core/index.html index b99904b355..ed19e6d796 100644 --- a/blog/categories/core/index.html +++ b/blog/categories/core/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -249,6 +250,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -266,12 +273,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/frontend/atom.xml b/blog/categories/frontend/atom.xml index ffe8534fa0..36188e242b 100644 --- a/blog/categories/frontend/atom.xml +++ b/blog/categories/frontend/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: frontend | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/frontend/index.html b/blog/categories/frontend/index.html index bb69e6938e..37fb1c65a2 100644 --- a/blog/categories/frontend/index.html +++ b/blog/categories/frontend/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -251,6 +252,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -268,12 +275,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index c22c315b23..18ff7120bc 100644 --- a/blog/categories/how-to/atom.xml +++ b/blog/categories/how-to/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: how-to | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ @@ -82,6 +82,271 @@ Glances web server started on http://0.0.0.0:61208/

    Glances has a couple of optional dependencies which are extenting the range of provided information. This means that it would be possible to get details about the RAID system, HDD temperature, IP addresses, sensors, etc., please create a Pull request with your additions or a Feature request if you want see more details in your Home Assistant frontend.

    +]]> + + + + <![CDATA[Home Assistant meets IFTTT]]> + + 2015-09-13T09:28:00-07:00 + https://home-assistant.io/blog/2015/09/13/home-assistant-meets-ifttt +

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +@sfam to integrate with IFTTT. IFTTT stands for If This, Then That and is a +webservice that integrates with almost every possible webservice out there. Adding Home +Assistant to this mix means Home Assistant can connect with all via IFTTT.

    + +

    It is now possible to disable your irregation system if it is going to be cloudy tomorrow or tweet +if your smoke alarm goes off.

    + + + + +

    + +

    + + + + +

    Head over to the setup instructions to get started with IFTTT. Click the +read more button for some example recipes.

    + + + + + + + + + +

    In each of the following examples, make sure to replace the XXX in the url with your correct +host address and api password.

    + + + + +

    Turn off irregation system when not needed

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/switch/turn_off?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “switch.irrigation” }
    + + + + +

    Tweet when important events happen

    + + + + +

    + +

    + + + + +

    This will tweet a message when a MQTT message is received that the smoke alarm has been triggered. +Setup Maker channel with event name HA_FIRE_ALARM and Twitter channel to tweet the message in +value1.

    + + +

    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +
    # Configuration.yaml entry
    +automation:
    +  alias: Post a tweet when fire alarm is triggered
    +
    +  platform: mqtt
    +  mqtt_topic: home/alarm/fire
    +  mqtt_payload: 'on'
    +
    +  execute_service: ifttt.trigger
    +  service_data: {"event":"HA_FIRE_ALARM", "value1":"The fire alarm just triggered!"}
    +

    + +

    Turn on lights when I get home

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “light.kitchen” }
    + + + + +

    Flash lights when a new PR comes in for Home Assistant

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “group.all_lights”, “flash”:“yes” }
    + + + + +

    Fire events when pressing the DO button

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/events/do_button_pressed?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    + + + ]]>
    diff --git a/blog/categories/how-to/index.html b/blog/categories/how-to/index.html index 1b97eba40a..815b98b0db 100644 --- a/blog/categories/how-to/index.html +++ b/blog/categories/how-to/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -148,6 +149,45 @@ + + + +
  • - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 0d66257f66..7c83a133c2 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: release-notes | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ @@ -13,6 +13,271 @@ Octopress + + <![CDATA[Home Assistant meets IFTTT]]> + + 2015-09-13T09:28:00-07:00 + https://home-assistant.io/blog/2015/09/13/home-assistant-meets-ifttt +

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +@sfam to integrate with IFTTT. IFTTT stands for If This, Then That and is a +webservice that integrates with almost every possible webservice out there. Adding Home +Assistant to this mix means Home Assistant can connect with all via IFTTT.

    + +

    It is now possible to disable your irregation system if it is going to be cloudy tomorrow or tweet +if your smoke alarm goes off.

    + + + + +

    + +

    + + + + +

    Head over to the setup instructions to get started with IFTTT. Click the +read more button for some example recipes.

    + + + + + + + + + +

    In each of the following examples, make sure to replace the XXX in the url with your correct +host address and api password.

    + + + + +

    Turn off irregation system when not needed

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/switch/turn_off?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “switch.irrigation” }
    + + + + +

    Tweet when important events happen

    + + + + +

    + +

    + + + + +

    This will tweet a message when a MQTT message is received that the smoke alarm has been triggered. +Setup Maker channel with event name HA_FIRE_ALARM and Twitter channel to tweet the message in +value1.

    + + +

    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +
    # Configuration.yaml entry
    +automation:
    +  alias: Post a tweet when fire alarm is triggered
    +
    +  platform: mqtt
    +  mqtt_topic: home/alarm/fire
    +  mqtt_payload: 'on'
    +
    +  execute_service: ifttt.trigger
    +  service_data: {"event":"HA_FIRE_ALARM", "value1":"The fire alarm just triggered!"}
    +

    + +

    Turn on lights when I get home

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “light.kitchen” }
    + + + + +

    Flash lights when a new PR comes in for Home Assistant

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/services/light/turn_on?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    BODY { “entity_id”: “group.all_lights”, “flash”:“yes” }
    + + + + +

    Fire events when pressing the DO button

    + + + + +

    + +

    + + + + +

    Maker channel setup:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field Value
    URL http://xxx.xxx.xxx.xxx:8123/api/events/do_button_pressed?api_password=xxxxxxxx
    METHOD POST
    CONTENT TYPE application/json
    + + + +]]>
    +
    + <![CDATA[Verisure devices and modern TP-Link routers now supported]]> @@ -447,124 +712,6 @@ switch: username: YOUR_USERNAME password: YOUR_PASSWORD -]]> - - - - <![CDATA[Release notes for May 14, 2015]]> - - 2015-05-14T22:25:00-07:00 - https://home-assistant.io/blog/2015/05/14/release-notes - Almost three busy weeks have past since the last release. We used this time to finally make the overhaul to use UTC as the internal date time format. We added a bunch of test coverage in the process to make sure the transition went smoothly. Pleas see the blog post about the UTC refactor for backwards incompatible changes.

    - -

    This release includes a significant startup boost for the frontend and a fix for Wemo discovery after their latest firmware upgrade.

    - -

    I would like to give a big shout out to our newest contributor fabaff for taking the time to improve the documentation.

    - -

    -To update to the latest version, run scripts/update. Please report any issues on GitHub. -

    - - - - - - - -

    Overwriting Entity Attributes
    -Before diving into the newly supported devices and services, I want to highlight an awesome configuration enhancement by rmkraus: overwriting entity attributes.

    - -

    These new configuration settings allow you to overwrite entity state attributes. The main usage for this is being able to overwrite attributes that influence how an entity is shown in the interface.

    - -
    # Example configuration.yaml entry
    -homeassistant:
    -  customize:
    -    light.bowl:
    -      # hides this entity from the interface
    -      hidden: true
    -    light.ceiling:
    -      # Replaces the state badge with given picture
    -      entity_picture: http://graph.facebook.com/schoutsen/picture
    -
    - -

    MySensors
    - -Andythigpen and Theolind have added support for the MySensors platform to Home Assistant.

    - -
    # Example configuration.yaml entry
    -sensor:
    -  platform: mysensors
    -  port: /dev/ttyACM0
    -
    - -

    OpenWeatherMap
    - -Fabaff has contributed support for OpenWeatherMap. This will allow you to integrate local meteorological data into Home Assistant.

    - -
    # Example configuration.yaml entry
    -sensor:
    -  platform: openweathermap
    -  api_key: YOUR_API_KEY
    -  monitored_variables:
    -    - type: 'weather'
    -    - type: 'temperature'
    -    - type: 'wind_speed'
    -    - type: 'humidity'
    -    - type: 'pressure'
    -    - type: 'clouds'
    -    - type: 'rain'
    -    - type: 'snow'
    -
    - -

    InstaPush
    - -Fabaff has contributed support for InstaPush. This will allow you send messages from Home Assistant to your iOS and Android devices.

    - -
    # Example configuration.yaml entry
    -notify:
    -    platform: instapush
    -    # Get those by creating a new application, event, and tracker on https://instapush.im
    -    api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
    -    app_secret: ABCDEFGHJKLMNOPQRSTUVXYZ
    -    event: ABCDEFGHJKLMNOPQRSTUVXYZ
    -    tracker: ABCDEFGHJKLMNOPQRSTUVXYZ
    -
    - -

    XMPP
    - -Fabaff has contributed support for Jabber/XMPP. This will allow you send messages from Home Assistant to anyone on Jabber/XMPP.

    - -
    # Example configuration.yaml entry
    -notify:
    -    platform: xmpp
    -    sender: YOUR_JID
    -    password: YOUR_JABBER_ACCOUNT_PASSWORD
    -    recipient: YOUR_RECIPIENT
    -
    - -

    Notify My Android
    - -Fabaff has contributed support for Notify My Android. This will allow you to send messages from Home Assistant to your Android device.

    - -
    # Example configuration.yaml entry
    -notify:
    -    platform: nma
    -    # Get this by registering a new application on http://www.notifymyandroid.com/
    -    api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
    -
    - -

    Time & Date sensor
    -Fabaff has contributed a time & date sensor. This will allow you to show the current time/date on the dashboard.

    - -
    # Example configuration.yaml entry
    -sensor:
    -  platform: time_date
    -  monitored_variables:
    -    - type: 'time'
    -    - type: 'date'
    -    - type: 'date_time'
    -    - type: 'time_date'
    -
    ]]>
    diff --git a/blog/categories/release-notes/index.html b/blog/categories/release-notes/index.html index 11d11007e4..c189701a98 100644 --- a/blog/categories/release-notes/index.html +++ b/blog/categories/release-notes/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -114,6 +115,45 @@ + + + +
  • - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 2d99dfd70d..6d8ea6654a 100644 --- a/blog/categories/user-stories/atom.xml +++ b/blog/categories/user-stories/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: user-stories | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/index.html b/blog/categories/user-stories/index.html index 570bea585a..0bf90c07bd 100644 --- a/blog/categories/user-stories/index.html +++ b/blog/categories/user-stories/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -249,6 +250,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -266,12 +273,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 8105bd333c..7024d95b61 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 https://home-assistant.io/ diff --git a/blog/categories/website/index.html b/blog/categories/website/index.html index 4642293f61..f21cb925fa 100644 --- a/blog/categories/website/index.html +++ b/blog/categories/website/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -212,6 +213,12 @@ +
  • + Home Assistant meets IFTTT +
  • + + +
  • Using MQTT with Home Assistant
  • @@ -229,12 +236,6 @@ - -
  • - Verisure devices and modern TP-Link routers now supported -
  • - - diff --git a/blog/index.html b/blog/index.html index c28e9ba2d3..6d3916514a 100644 --- a/blog/index.html +++ b/blog/index.html @@ -53,9 +53,10 @@ Getting started
  • @@ -162,6 +163,95 @@ Inspried by a fea
    +
    +
    + +

    + Home Assistant meets IFTTT +

    + + + +
    + + + + + + + + + + + + + + + + + + + three minutes reading time + + + + + + + + + Comments + +
    + +
    + + + + +
    +

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +@sfam to integrate with IFTTT. IFTTT stands for If This, Then That and is a +webservice that integrates with almost every possible webservice out there. Adding Home +Assistant to this mix means Home Assistant can connect with all via IFTTT.

    + +

    It is now possible to disable your irregation system if it is going to be cloudy tomorrow or tweet +if your smoke alarm goes off.

    + + + + +

    + +

    + + + + +

    Head over to the setup instructions to get started with IFTTT. Click the +read more button for some example recipes.

    + + + + + + Read on → +
    + +
    +
    + +
    @@ -856,99 +946,6 @@ To update to the latest version, run scripts/update. Please report

    - -
    -
    - -

    - UTC & Time zone awareness -

    - - - -
    - - - - - - - - - - - - - - - - - - - two minutes reading time - - - - - - - - - Comments - -
    - -
    - - - - -

    I have recently merged code to refactor Home Assistant to use only UTC times internally. A much needed refactor. I’ve added some extra test coverage to time sensitive parts to ensure stability. The code has been live in the dev branch for the last 9 days and will be soon released to the master branch.

    - -

    From now on all internal communication will be done in UTC: time changed events, datetime attributes of states, etc. To get the current time in UTC you can call homeassistant.util.dt.utcnow(). This is a timezone aware UTC datetime object. homeassistant.util.dt is a new util package with date helpers.

    - -

    There is also such a thing as local time. Local time is based on the time zone that you have setup in your configuration.yaml. Local times should only be used for user facing information: logs, frontend and automation settings in configuration.yaml.

    - -

    Setting up your time zone

    - -

    Setting up a time zone happens in configuration.yaml. If you have no time zone setup, it will be auto detected using the existing detection code using freegeoip.net. You can find a list of compatible time zones on Wikipedia.

    - -
    1
    -2
    -
    homeassistant:
    -  time_zone: America/Los_Angeles
    -
    - - -

    Compatibility

    - -

    The changes to the code are mostly backwards compatible. The old hass.track_time_change and hass.track_point_in_time use now internally two new methods: hass.track_utc_time_change and hass.track_point_in_utc_time. The usage of the old methods have not changed and should be backwards compatible.

    - -

    This refactor adds a new migration for the database adding a utc_offset column to events and states. This information is currently not used but can prove useful in the future when we start analyzing the historical data.

    - -

    Backwards incompatible stuff

    - -

    All built-in components have been upgraded. The following list is only for people that run custom components:

    - -
      -
    • hass.track_time_change and hass.track_point_in_time will now return a time zone aware datetime object. Python does not allow comparing a naive with an aware datetime object.
    • -
    • the sun attributes for rising and setting are now in UTC. The methods sun.next_rising(hass) and sun.next_setting(hass) are backwards compatible, just be careful if you used to read the raw attributes.
    • -
    • the API sends all times in UTC. If you use anything else besides the frontend to talk to HA, make sure it handles it differently.
    • -
    - - - -
    -
    -
  • @@ -96,6 +97,99 @@ +
    +
    + +

    + UTC & Time zone awareness +

    + + + +
    + + + + + + + + + + + + + + + + + + + two minutes reading time + + + + + + + + + Comments + +
    + +
    + + + + +

    I have recently merged code to refactor Home Assistant to use only UTC times internally. A much needed refactor. I’ve added some extra test coverage to time sensitive parts to ensure stability. The code has been live in the dev branch for the last 9 days and will be soon released to the master branch.

    + +

    From now on all internal communication will be done in UTC: time changed events, datetime attributes of states, etc. To get the current time in UTC you can call homeassistant.util.dt.utcnow(). This is a timezone aware UTC datetime object. homeassistant.util.dt is a new util package with date helpers.

    + +

    There is also such a thing as local time. Local time is based on the time zone that you have setup in your configuration.yaml. Local times should only be used for user facing information: logs, frontend and automation settings in configuration.yaml.

    + +

    Setting up your time zone

    + +

    Setting up a time zone happens in configuration.yaml. If you have no time zone setup, it will be auto detected using the existing detection code using freegeoip.net. You can find a list of compatible time zones on Wikipedia.

    + +
    1
    +2
    +
    homeassistant:
    +  time_zone: America/Los_Angeles
    +
    + + +

    Compatibility

    + +

    The changes to the code are mostly backwards compatible. The old hass.track_time_change and hass.track_point_in_time use now internally two new methods: hass.track_utc_time_change and hass.track_point_in_utc_time. The usage of the old methods have not changed and should be backwards compatible.

    + +

    This refactor adds a new migration for the database adding a utc_offset column to events and states. This information is currently not used but can prove useful in the future when we start analyzing the historical data.

    + +

    Backwards incompatible stuff

    + +

    All built-in components have been upgraded. The following list is only for people that run custom components:

    + +
      +
    • hass.track_time_change and hass.track_point_in_time will now return a time zone aware datetime object. Python does not allow comparing a naive with an aware datetime object.
    • +
    • the sun attributes for rising and setting are now in UTC. The methods sun.next_rising(hass) and sun.next_setting(hass) are backwards compatible, just be careful if you used to read the raw attributes.
    • +
    • the API sends all times in UTC. If you use anything else besides the frontend to talk to HA, make sure it handles it differently.
    • +
    + + + +
    +
    + +
    @@ -883,79 +977,6 @@ Home Assistant now supports --open-ui and --demo-mode -
    -
    - - -
    -
    - -

    - Bootstrapping your setup with Discovery -

    - - - -
    - - - - - - - - - - - - - - - - - - - less than one minute reading time - - - - - - - - - Comments - -
    - -
    - - - - -

    Most people do not like configuring things. Things just have to work, out of the box. Reaching this scenario is the goal of what we are about to introduce: our new discovery component.

    - -

    The discovery component will scan the WiFi network from time to time for connected zeroconf/mDNS and uPnP devices. The intial introduction is mainly focussed on getting the right architecture in place and discovers Belkin WeMo switches and Google Chromecasts connected to your network. When found, it will load and notify the appropritate component and it will be ready to use within seconds.

    - -

    Most devices still require some sort of interaction from the user after being discovered - be it a button being pressed or some sort of authentication. This is a challenge that will be solved in the future.

    - -

    To enable the discovery component, add the following to your home-assistant.conf:

    - -
    1
    -
    [discovery]
    - - -

    A new discovery section has been added to the Adding a new platform page with instructions how to make your platform discoverable.

    - -

    diff --git a/blog/posts/3/index.html b/blog/posts/3/index.html index 072090c40f..584a0fd659 100644 --- a/blog/posts/3/index.html +++ b/blog/posts/3/index.html @@ -22,7 +22,7 @@ - + @@ -53,9 +53,10 @@ Getting started
  • @@ -96,6 +97,79 @@ +
    +
    + +

    + Bootstrapping your setup with Discovery +

    + + + +
    + + + + + + + + + + + + + + + + + + + less than one minute reading time + + + + + + + + + Comments + +
    + +
    + + + + +

    Most people do not like configuring things. Things just have to work, out of the box. Reaching this scenario is the goal of what we are about to introduce: our new discovery component.

    + +

    The discovery component will scan the WiFi network from time to time for connected zeroconf/mDNS and uPnP devices. The intial introduction is mainly focussed on getting the right architecture in place and discovers Belkin WeMo switches and Google Chromecasts connected to your network. When found, it will load and notify the appropritate component and it will be ready to use within seconds.

    + +

    Most devices still require some sort of interaction from the user after being discovered - be it a button being pressed or some sort of authentication. This is a challenge that will be solved in the future.

    + +

    To enable the discovery component, add the following to your home-assistant.conf:

    + +
    1
    +
    [discovery]
    + + +

    A new discovery section has been added to the Adding a new platform page with instructions how to make your platform discoverable.

    + + +
    +
    + +
  • diff --git a/components/automation.html b/components/automation.html index e6842b0a5f..8c0e578507 100644 --- a/components/automation.html +++ b/components/automation.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/browser.html b/components/browser.html index 451ca23d9b..e70f538697 100644 --- a/components/browser.html +++ b/components/browser.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/camera.foscam.html b/components/camera.foscam.html index a711b34bcd..60c8eac588 100644 --- a/components/camera.foscam.html +++ b/components/camera.foscam.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/camera.generic.html b/components/camera.generic.html index 4bebbbd320..e7dc3a0e5f 100644 --- a/components/camera.generic.html +++ b/components/camera.generic.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/configurator.html b/components/configurator.html index 1ed500041c..fd2e626387 100644 --- a/components/configurator.html +++ b/components/configurator.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/conversation.html b/components/conversation.html index 1f273aa2ba..a329773f4d 100644 --- a/components/conversation.html +++ b/components/conversation.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_sun_light_trigger.html b/components/device_sun_light_trigger.html index 46483e5870..eb462c3411 100644 --- a/components/device_sun_light_trigger.html +++ b/components/device_sun_light_trigger.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.actiontec.html b/components/device_tracker.actiontec.html index 820082e22f..d31a351129 100644 --- a/components/device_tracker.actiontec.html +++ b/components/device_tracker.actiontec.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.aruba.html b/components/device_tracker.aruba.html index 10a37e2655..31542cfe9c 100644 --- a/components/device_tracker.aruba.html +++ b/components/device_tracker.aruba.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.asuswrt.html b/components/device_tracker.asuswrt.html index 74966d0742..b482ee04b2 100644 --- a/components/device_tracker.asuswrt.html +++ b/components/device_tracker.asuswrt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.ddwrt.html b/components/device_tracker.ddwrt.html index 9d237a76f9..8bdec80888 100644 --- a/components/device_tracker.ddwrt.html +++ b/components/device_tracker.ddwrt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.html b/components/device_tracker.html index f3f248a24d..7d739c29a6 100644 --- a/components/device_tracker.html +++ b/components/device_tracker.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.luci.html b/components/device_tracker.luci.html index 030fab17c2..dbf7260513 100644 --- a/components/device_tracker.luci.html +++ b/components/device_tracker.luci.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.mqtt.html b/components/device_tracker.mqtt.html index 329f97ed05..a1ed244bcb 100644 --- a/components/device_tracker.mqtt.html +++ b/components/device_tracker.mqtt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.netgear.html b/components/device_tracker.netgear.html index 684163aba0..08917439fe 100644 --- a/components/device_tracker.netgear.html +++ b/components/device_tracker.netgear.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.nmap_scanner.html b/components/device_tracker.nmap_scanner.html index 2f7d64f4ff..adfcd2157f 100644 --- a/components/device_tracker.nmap_scanner.html +++ b/components/device_tracker.nmap_scanner.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.thomson.html b/components/device_tracker.thomson.html index 4a1b9027e2..720ed811ea 100644 --- a/components/device_tracker.thomson.html +++ b/components/device_tracker.thomson.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.tomato.html b/components/device_tracker.tomato.html index f5a6fd6e36..319b02f4e2 100644 --- a/components/device_tracker.tomato.html +++ b/components/device_tracker.tomato.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/device_tracker.tplink.html b/components/device_tracker.tplink.html index 44493b5bc1..1a2baa4980 100644 --- a/components/device_tracker.tplink.html +++ b/components/device_tracker.tplink.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/discovery.html b/components/discovery.html index 42ff345ee7..4dd59554dc 100644 --- a/components/discovery.html +++ b/components/discovery.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/downloader.html b/components/downloader.html index 6ef61a1feb..5d4b072fdb 100644 --- a/components/downloader.html +++ b/components/downloader.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/group.html b/components/group.html index b924e98136..8d9bb03985 100644 --- a/components/group.html +++ b/components/group.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/history.html b/components/history.html index 67858b1df0..374b71e8c6 100644 --- a/components/history.html +++ b/components/history.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/ifttt.html b/components/ifttt.html index 442035e286..f9035b7571 100644 --- a/components/ifttt.html +++ b/components/ifttt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/index.html b/components/index.html index 2aeb8c5d94..ddb1dfed1d 100644 --- a/components/index.html +++ b/components/index.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/isy994.html b/components/isy994.html index 56d7aa06e6..47698bf657 100644 --- a/components/isy994.html +++ b/components/isy994.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/keyboard.html b/components/keyboard.html index 99252864c1..04aeb02392 100644 --- a/components/keyboard.html +++ b/components/keyboard.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/light.html b/components/light.html index ef0539edf3..d29a374d02 100644 --- a/components/light.html +++ b/components/light.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/light.hue.html b/components/light.hue.html index 086cd2daa0..79d436deb7 100644 --- a/components/light.hue.html +++ b/components/light.hue.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/light.limitlessled.html b/components/light.limitlessled.html index 34f81ed273..2752583ae8 100644 --- a/components/light.limitlessled.html +++ b/components/light.limitlessled.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/logbook.html b/components/logbook.html index ebaf4b060f..cc15fce2cb 100644 --- a/components/logbook.html +++ b/components/logbook.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.cast.html b/components/media_player.cast.html index 518e26b4f2..1377c6c24d 100644 --- a/components/media_player.cast.html +++ b/components/media_player.cast.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.denon.html b/components/media_player.denon.html index 210a90ee5a..c458383398 100644 --- a/components/media_player.denon.html +++ b/components/media_player.denon.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.html b/components/media_player.html index 11e2e9dea7..813bc59023 100644 --- a/components/media_player.html +++ b/components/media_player.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.itunes.html b/components/media_player.itunes.html index 151796e851..d13aa8c66b 100644 --- a/components/media_player.itunes.html +++ b/components/media_player.itunes.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.kodi.html b/components/media_player.kodi.html index b0910ca396..7b978fb666 100644 --- a/components/media_player.kodi.html +++ b/components/media_player.kodi.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.mpd.html b/components/media_player.mpd.html index 22cf6bba72..08c308eb7f 100644 --- a/components/media_player.mpd.html +++ b/components/media_player.mpd.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.sonos.html b/components/media_player.sonos.html index b1db6e2d0b..4f225aa76a 100644 --- a/components/media_player.sonos.html +++ b/components/media_player.sonos.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/media_player.squeezebox.html b/components/media_player.squeezebox.html index 1d27ecf32b..54cffd0df5 100644 --- a/components/media_player.squeezebox.html +++ b/components/media_player.squeezebox.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/modbus.html b/components/modbus.html index bcd72c8be2..abd49c7a6f 100644 --- a/components/modbus.html +++ b/components/modbus.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/mqtt.html b/components/mqtt.html index ed5ff71e89..99437b0a37 100644 --- a/components/mqtt.html +++ b/components/mqtt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.file.html b/components/notify.file.html index 5d16d5b76d..606a817642 100644 --- a/components/notify.file.html +++ b/components/notify.file.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.html b/components/notify.html index d8c07d9dee..f3370bf923 100644 --- a/components/notify.html +++ b/components/notify.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.instapush.html b/components/notify.instapush.html index 3dc738b5ed..aed7ca2d14 100644 --- a/components/notify.instapush.html +++ b/components/notify.instapush.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.nma.html b/components/notify.nma.html index cc5f5ef047..dd14b1a8a2 100644 --- a/components/notify.nma.html +++ b/components/notify.nma.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.pushbullet.html b/components/notify.pushbullet.html index 1514d9abac..a678744cdd 100644 --- a/components/notify.pushbullet.html +++ b/components/notify.pushbullet.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.pushover.html b/components/notify.pushover.html index e818411e09..2d6221c6e4 100644 --- a/components/notify.pushover.html +++ b/components/notify.pushover.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.slack.html b/components/notify.slack.html index 77dd6e1e3b..806de53ea5 100644 --- a/components/notify.slack.html +++ b/components/notify.slack.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.smtp.html b/components/notify.smtp.html index f9372492cb..6f2a841d94 100644 --- a/components/notify.smtp.html +++ b/components/notify.smtp.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.syslog.html b/components/notify.syslog.html index 2448ff5c53..4187c97d3f 100644 --- a/components/notify.syslog.html +++ b/components/notify.syslog.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/notify.xmpp.html b/components/notify.xmpp.html index 4bef9b3208..4e65435bc8 100644 --- a/components/notify.xmpp.html +++ b/components/notify.xmpp.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/scene.html b/components/scene.html index 6ff4de9be6..591104af47 100644 --- a/components/scene.html +++ b/components/scene.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/script.html b/components/script.html index 31c40ac67f..f16327473f 100644 --- a/components/script.html +++ b/components/script.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.arduino.html b/components/sensor.arduino.html index 53bd620b8a..382d514b6c 100644 --- a/components/sensor.arduino.html +++ b/components/sensor.arduino.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.arest.html b/components/sensor.arest.html index 60dbf9519f..e8139ae7b5 100644 --- a/components/sensor.arest.html +++ b/components/sensor.arest.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.bitcoin.html b/components/sensor.bitcoin.html index 1f59797d1c..900a777c37 100644 --- a/components/sensor.bitcoin.html +++ b/components/sensor.bitcoin.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.command_sensor.html b/components/sensor.command_sensor.html index c23d752b8c..4651de5b02 100644 --- a/components/sensor.command_sensor.html +++ b/components/sensor.command_sensor.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.dht.html b/components/sensor.dht.html index a6345e83b1..c2a5f8ec85 100644 --- a/components/sensor.dht.html +++ b/components/sensor.dht.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.efergy.html b/components/sensor.efergy.html index 9062a4a95d..368a532ce3 100644 --- a/components/sensor.efergy.html +++ b/components/sensor.efergy.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.forecast.html b/components/sensor.forecast.html index 444f7df9ef..5804076ce4 100644 --- a/components/sensor.forecast.html +++ b/components/sensor.forecast.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.glances.html b/components/sensor.glances.html index d69248db9a..94ea68ede2 100644 --- a/components/sensor.glances.html +++ b/components/sensor.glances.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.mqtt.html b/components/sensor.mqtt.html index b1e5602d5d..b62b5cc313 100644 --- a/components/sensor.mqtt.html +++ b/components/sensor.mqtt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.mysensors.html b/components/sensor.mysensors.html index 5387514052..7180f40959 100644 --- a/components/sensor.mysensors.html +++ b/components/sensor.mysensors.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.openweathermap.html b/components/sensor.openweathermap.html index fc69acf0eb..9fb101995d 100644 --- a/components/sensor.openweathermap.html +++ b/components/sensor.openweathermap.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.rfxtrx.html b/components/sensor.rfxtrx.html index bbe4285508..dd8d80ddfa 100644 --- a/components/sensor.rfxtrx.html +++ b/components/sensor.rfxtrx.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.rpi_gpio.html b/components/sensor.rpi_gpio.html index 6c88d416a2..54d0dd1a4d 100644 --- a/components/sensor.rpi_gpio.html +++ b/components/sensor.rpi_gpio.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.sabnzbd.html b/components/sensor.sabnzbd.html index 12dd84ace1..1899b9c195 100644 --- a/components/sensor.sabnzbd.html +++ b/components/sensor.sabnzbd.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.swiss_public_transport.html b/components/sensor.swiss_public_transport.html index 7b140ce11c..24af1a2165 100644 --- a/components/sensor.swiss_public_transport.html +++ b/components/sensor.swiss_public_transport.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.systemmonitor.html b/components/sensor.systemmonitor.html index 2770913854..8fd907f4d7 100644 --- a/components/sensor.systemmonitor.html +++ b/components/sensor.systemmonitor.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.temper.html b/components/sensor.temper.html index 18aab7c8ad..b5c9356d1b 100644 --- a/components/sensor.temper.html +++ b/components/sensor.temper.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.time_date.html b/components/sensor.time_date.html index 5f45ae0891..cafd35f1df 100644 --- a/components/sensor.time_date.html +++ b/components/sensor.time_date.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sensor.transmission.html b/components/sensor.transmission.html index c1d2e8c91a..c3937c1b31 100644 --- a/components/sensor.transmission.html +++ b/components/sensor.transmission.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/simple_alarm.html b/components/simple_alarm.html index ef1d7248b6..947c5a396a 100644 --- a/components/simple_alarm.html +++ b/components/simple_alarm.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/sun.html b/components/sun.html index 55725ef2e1..3c6c523e54 100644 --- a/components/sun.html +++ b/components/sun.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.arduino.html b/components/switch.arduino.html index c8c6cd46ed..de634df11c 100644 --- a/components/switch.arduino.html +++ b/components/switch.arduino.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.arest.html b/components/switch.arest.html index aaee297545..06eabe748e 100644 --- a/components/switch.arest.html +++ b/components/switch.arest.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.command_switch.html b/components/switch.command_switch.html index 20206e9cb4..ebd0131b1d 100644 --- a/components/switch.command_switch.html +++ b/components/switch.command_switch.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.edimax.html b/components/switch.edimax.html index f41c923faa..e9b09aa4da 100644 --- a/components/switch.edimax.html +++ b/components/switch.edimax.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.hikvision.html b/components/switch.hikvision.html index cd771314f9..78ba22b83d 100644 --- a/components/switch.hikvision.html +++ b/components/switch.hikvision.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.html b/components/switch.html index 1e779e1200..7ff97781c6 100644 --- a/components/switch.html +++ b/components/switch.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.mqtt.html b/components/switch.mqtt.html index aa45d2a259..651aefb773 100644 --- a/components/switch.mqtt.html +++ b/components/switch.mqtt.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.rpi_gpio.html b/components/switch.rpi_gpio.html index 17210497cf..7bbb363828 100644 --- a/components/switch.rpi_gpio.html +++ b/components/switch.rpi_gpio.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.transmission.html b/components/switch.transmission.html index aeb27f3d08..5e21430736 100644 --- a/components/switch.transmission.html +++ b/components/switch.transmission.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/switch.wemo.html b/components/switch.wemo.html index 01ee3a5900..a7bc856320 100644 --- a/components/switch.wemo.html +++ b/components/switch.wemo.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/tellstick.html b/components/tellstick.html index ac0253841b..c0f2f1ab41 100644 --- a/components/tellstick.html +++ b/components/tellstick.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/thermostat.heat_control.html b/components/thermostat.heat_control.html index 1b3d53dc3a..66d1ab1681 100644 --- a/components/thermostat.heat_control.html +++ b/components/thermostat.heat_control.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/thermostat.html b/components/thermostat.html index a80255e6a4..60709c49de 100644 --- a/components/thermostat.html +++ b/components/thermostat.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/thermostat.nest.html b/components/thermostat.nest.html index 2a1732374f..d8f2538004 100644 --- a/components/thermostat.nest.html +++ b/components/thermostat.nest.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/vera.html b/components/vera.html index 5b96a8a8b1..2c8795b1d7 100644 --- a/components/vera.html +++ b/components/vera.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/verisure.html b/components/verisure.html index bf6567bb81..614cfacc84 100644 --- a/components/verisure.html +++ b/components/verisure.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/wink.html b/components/wink.html index 95d0b5464d..dcb55d6163 100644 --- a/components/wink.html +++ b/components/wink.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/components/zwave.html b/components/zwave.html index 39cd828c9a..a259e4cf3c 100644 --- a/components/zwave.html +++ b/components/zwave.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/add_new_platform.html b/developers/add_new_platform.html index f8b06f5e81..9732dedf23 100644 --- a/developers/add_new_platform.html +++ b/developers/add_new_platform.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/api.html b/developers/api.html index 0c12901994..3ea601fb2f 100644 --- a/developers/api.html +++ b/developers/api.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/architecture.html b/developers/architecture.html index ecce4f82c6..073952964b 100644 --- a/developers/architecture.html +++ b/developers/architecture.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/creating_components.html b/developers/creating_components.html index 493efef845..024a80b0d7 100644 --- a/developers/creating_components.html +++ b/developers/creating_components.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/credits.html b/developers/credits.html index 1bc4b64fdb..aadcde3e8d 100644 --- a/developers/credits.html +++ b/developers/credits.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/frontend.html b/developers/frontend.html index 6f99eb0df9..e50879455f 100644 --- a/developers/frontend.html +++ b/developers/frontend.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/index.html b/developers/index.html index ccc32e007c..9819bfd0bd 100644 --- a/developers/index.html +++ b/developers/index.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/python_api.html b/developers/python_api.html index b2c92c6e75..6230ee77bd 100644 --- a/developers/python_api.html +++ b/developers/python_api.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/rest_api.html b/developers/rest_api.html index 82d59bf78a..34624c7123 100644 --- a/developers/rest_api.html +++ b/developers/rest_api.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/developers/website.html b/developers/website.html index c41e571744..a099271776 100644 --- a/developers/website.html +++ b/developers/website.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/android.html b/getting-started/android.html index 18b24e5983..2ae6b2ba24 100644 --- a/getting-started/android.html +++ b/getting-started/android.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/automation.html b/getting-started/automation.html index bb2a5f2b04..476138ed37 100644 --- a/getting-started/automation.html +++ b/getting-started/automation.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/autostart.html b/getting-started/autostart.html index 941b5ec7a8..b2766d0d9f 100644 --- a/getting-started/autostart.html +++ b/getting-started/autostart.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/configuration.html b/getting-started/configuration.html index 867cee6fe9..2fb3cebb19 100644 --- a/getting-started/configuration.html +++ b/getting-started/configuration.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/devices.html b/getting-started/devices.html index be99c1463f..735676a752 100644 --- a/getting-started/devices.html +++ b/getting-started/devices.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/index.html b/getting-started/index.html index 921236b7e9..ff7a554cf9 100644 --- a/getting-started/index.html +++ b/getting-started/index.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/troubleshooting-configuration.html b/getting-started/troubleshooting-configuration.html index d51169378b..5b4dc01126 100644 --- a/getting-started/troubleshooting-configuration.html +++ b/getting-started/troubleshooting-configuration.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/getting-started/troubleshooting.html b/getting-started/troubleshooting.html index 2e02ceae24..148fe63b9e 100644 --- a/getting-started/troubleshooting.html +++ b/getting-started/troubleshooting.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/help/index.html b/help/index.html index f132c57128..c7db476ca0 100644 --- a/help/index.html +++ b/help/index.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/images/blog/2015-09-ifttt/og_facebook.png b/images/blog/2015-09-ifttt/og_facebook.png new file mode 100644 index 0000000000..18ab31a495 Binary files /dev/null and b/images/blog/2015-09-ifttt/og_facebook.png differ diff --git a/images/blog/2015-09-ifttt/recipe-do.png b/images/blog/2015-09-ifttt/recipe-do.png new file mode 100644 index 0000000000..d678d5324c Binary files /dev/null and b/images/blog/2015-09-ifttt/recipe-do.png differ diff --git a/images/blog/2015-09-ifttt/recipe-geo.png b/images/blog/2015-09-ifttt/recipe-geo.png new file mode 100644 index 0000000000..2d8359d06d Binary files /dev/null and b/images/blog/2015-09-ifttt/recipe-geo.png differ diff --git a/images/blog/2015-09-ifttt/recipe-github.png b/images/blog/2015-09-ifttt/recipe-github.png new file mode 100644 index 0000000000..3029228bde Binary files /dev/null and b/images/blog/2015-09-ifttt/recipe-github.png differ diff --git a/images/blog/2015-09-ifttt/recipe-twitter.png b/images/blog/2015-09-ifttt/recipe-twitter.png new file mode 100644 index 0000000000..74f40fbcee Binary files /dev/null and b/images/blog/2015-09-ifttt/recipe-twitter.png differ diff --git a/images/blog/2015-09-ifttt/recipe-weather.png b/images/blog/2015-09-ifttt/recipe-weather.png new file mode 100644 index 0000000000..149f5d5951 Binary files /dev/null and b/images/blog/2015-09-ifttt/recipe-weather.png differ diff --git a/images/blog/2015-09-ifttt/splash.png b/images/blog/2015-09-ifttt/splash.png new file mode 100644 index 0000000000..ab82760d5e Binary files /dev/null and b/images/blog/2015-09-ifttt/splash.png differ diff --git a/index.html b/index.html index 7df78a8d3f..5151e66b00 100644 --- a/index.html +++ b/index.html @@ -53,9 +53,10 @@ Getting started
  • diff --git a/sitemap.xml b/sitemap.xml index 6fe77fa54c..f5dd65f891 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -5,6 +5,11 @@ 2015-09-18T02:00:00-07:00 0.8 + + https://home-assistant.io/blog/2015/09/13/home-assistant-meets-ifttt/ + 2015-09-13T09:28:00-07:00 + 0.8 + https://home-assistant.io/blog/2015/09/11/different-ways-to-use-mqtt-with-home-assistant/ 2015-09-11T02:19:38-07:00 @@ -117,691 +122,691 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/android.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/arduino.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/automation.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/autostart.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/camera.foscam.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/camera.generic.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/configuration.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/configurator.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/conversation.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/credits.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.actiontec.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.aruba.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.asuswrt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.ddwrt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.luci.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.mqtt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.netgear.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.thomson.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tomato.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tplink.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/devices.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/group.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/history.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/ifttt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 1.0 https://home-assistant.io/blog/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/blog/archives/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/help/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/ - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/isy994.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/light.hue.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/light.limitlessled.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/logbook.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.cast.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.denon.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.itunes.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.kodi.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.mpd.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.sonos.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/media_player.squeezebox.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/modbus.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/mqtt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.file.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.instapush.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.nma.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushbullet.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushover.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.slack.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.smtp.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.syslog.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/notify.xmpp.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/python_api.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/rest_api.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/scene.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/script.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arduino.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arest.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.bitcoin.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.command_sensor.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.dht.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.efergy.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.forecast.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.glances.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mqtt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mysensors.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.openweathermap.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rfxtrx.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rpi_gpio.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.sabnzbd.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.systemmonitor.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.temper.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.time_date.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sensor.transmission.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.arduino.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.arest.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.command_switch.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.edimax.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.hikvision.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.mqtt.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.rpi_gpio.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.transmission.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/switch.wemo.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/tellstick.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.heat_control.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.nest.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting-configuration.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/vera.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/verisure.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/developers/website.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7 https://home-assistant.io/components/zwave.html - 2015-09-19T21:36:21-07:00 + 2015-09-19T22:10:53-07:00 weekly 0.7