diff --git a/atom.xml b/atom.xml index f2c53d1791..5d771e1f51 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ @@ -13,6 +13,104 @@ Octopress + + <![CDATA[Alarms, Sonos and iTunes now supported]]> + + 2015-09-19T07:47:00-07:00 + https://home-assistant.io/blog/2015/09/19/alarm-sonos-and-itunes-support + It’s like someone opened a can of rock solid developers and emptied it above our +chat channel because it exploded with +great conversations and solid contributions. Featured in release 0.7.3: Sonos, iTunes, Alarm component and Automation upgrade.

+ +

See GitHub for more detailed release notes.

+ +

Migration note: the scheduler component has been removed in favor of the automation component.

+ +

Sonos
+ +Sonos support has been added by @rhooper and @SEJeff. Home Assistant is now able to automatically +detect Sonos devices in your network and set them up for you. It will allow you to control music +playing on your Sonos and change the volume.

+ +

iTunes and airplay speakers
+ +@maddox has contributed support for controlling iTunes and airplay speakers. For this to work you will +have to run itunes-api on your Mac as middleware.

+ +
1
+2
+3
+4
+5
+6
+
# Example configuration.yaml entry
+media_player:
+  platform: itunes
+  name: iTunes
+  host: http://192.168.1.50
+  port: 8181
+ + + + + + + +

Automation
+Automation has gotten a lot of love. It now supports conditions, multiple triggers and new types of +triggers. The best to get started with it is to head over to the new +getting started with automation page.

+ +
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+
# Example of entry in configuration.yaml
+automation:
+  alias: Light on in the evening
+  trigger:
+    - platform: sun
+      event: sunset
+      offset: "-01:00:00"
+    - platform: state
+      entity_id: group.all_devices
+      state: home
+  condition:
+    - platform: state
+      entity_id: group.all_devices
+      state: home
+    - platform: time
+      after: "16:00:00"
+      before: "23:00:00"
+  action:
+    service: homeassistant.turn_on
+    entity_id: group.living_room
+
+ + +

Verisure Alarms
+ +We now support arming and disarming your verisure alarm from within Home Assistant thanks to added +support by @persandstrom.

+]]>
+
+ <![CDATA[Remote Monitoring with Glances]]> @@ -109,58 +207,37 @@ Inspried by a fea 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 + 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.

+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:

- - - @@ -189,27 +266,17 @@ host address and api password.

- -

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
@@ -233,25 +300,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
 
- -

Turn on lights when I get home

- - -

- -

Maker channel setup:

- - - @@ -280,25 +337,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
- -

Flash lights when a new PR comes in for Home Assistant

- - -

- -

Maker channel setup:

- - - @@ -327,25 +374,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
- -

Fire events when pressing the DO button

- - -

- -

Maker channel setup:

- - - @@ -369,8 +406,6 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
- - ]]>
@@ -2458,34 +2493,6 @@ Home Assistant should now throw better errors and offer solutions if you do not

Streamlined first launch
Home Assistant now supports --open-ui and --demo-mode command line properties to open the browser automatically and have something to show. Home Assistant now supports to be run without a password, allowing the interface to login automatically on launch.

-]]> - - - - <![CDATA[Nest in the house!]]> - - 2015-01-13T08:29:04-08:00 - https://home-assistant.io/blog/2015/01/13/nest-in-da-house - For thet majority of its existence, Home Assistant primary focus was on presence detection, lights and switches. But not anymore as we’re expanding the supported devices. Today, we’re proud to introduce Nest Thermostat integration for Home Assistant contributed by Stefano Fiorini!

- -

- -

- - -

The new integration exists out of two parts: a generic thermostat component and a Nest platform implementation. The initial version implements provides a read-only card and services to control it. The plan is in the future to add temperature and away mode controls from the thermostat card and more info dialog. Internally, we are using the Python package python-nest by jkoelker to talk to the Nest.

- -

If you own a Nest thermostat, add the following lines to your home-assistant.conf:

- -
1
-2
-3
-4
-
[thermostat]
-platform=nest
-username=YOUR_USERNAME
-password=YOUR_PASSWORD
- ]]>
diff --git a/blog/2014/12/18/website-launched/index.html b/blog/2014/12/18/website-launched/index.html index e4fca0b2a1..1219400b80 100644 --- a/blog/2014/12/18/website-launched/index.html +++ b/blog/2014/12/18/website-launched/index.html @@ -213,6 +213,12 @@ 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 ec9799133a..5dba603469 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 @@ -275,6 +275,12 @@ This article will try to explain how they all relate.

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 5694230735..7711925cc2 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 @@ -257,6 +257,12 @@ 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 ae1cd5f67a..0e916221c9 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 @@ -225,6 +225,12 @@ 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 61cbf39f1f..5c5077f032 100644 --- a/blog/2015/01/13/nest-in-da-house/index.html +++ b/blog/2015/01/13/nest-in-da-house/index.html @@ -232,6 +232,12 @@ diff --git a/blog/2015/01/24/release-notes/index.html b/blog/2015/01/24/release-notes/index.html index 94da1b1167..6514d25cea 100644 --- a/blog/2015/01/24/release-notes/index.html +++ b/blog/2015/01/24/release-notes/index.html @@ -237,6 +237,12 @@ Home Assistant now supports --open-ui and --demo-mode 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 8bb126a003..d971c74649 100644 --- a/blog/2015/02/08/looking-at-the-past/index.html +++ b/blog/2015/02/08/looking-at-the-past/index.html @@ -255,6 +255,12 @@ Events are saved in a local database. Google Graphs is used to draw the graph. D diff --git a/blog/2015/02/24/streaming-updates/index.html b/blog/2015/02/24/streaming-updates/index.html index 738a0a40b9..c79c9d9d4a 100644 --- a/blog/2015/02/24/streaming-updates/index.html +++ b/blog/2015/02/24/streaming-updates/index.html @@ -233,6 +233,12 @@ 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 e082d90fd8..6655047da8 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 @@ -220,6 +220,12 @@ YAML allows the use of lists, which should make the configuration file a bit mor diff --git a/blog/2015/03/08/new-logo/index.html b/blog/2015/03/08/new-logo/index.html index 1a69919901..727a7a9865 100644 --- a/blog/2015/03/08/new-logo/index.html +++ b/blog/2015/03/08/new-logo/index.html @@ -221,6 +221,12 @@ The old logo, the new detailed logo and the new simple logo. diff --git a/blog/2015/03/11/release-notes/index.html b/blog/2015/03/11/release-notes/index.html index c9c1dc6ce5..489ced8903 100644 --- a/blog/2015/03/11/release-notes/index.html +++ b/blog/2015/03/11/release-notes/index.html @@ -267,6 +267,12 @@ An initial version of voice control for Home Assistant has landed. The current i diff --git a/blog/2015/03/22/release-notes/index.html b/blog/2015/03/22/release-notes/index.html index 3553b2ccdf..2aebe391dc 100644 --- a/blog/2015/03/22/release-notes/index.html +++ b/blog/2015/03/22/release-notes/index.html @@ -340,6 +340,12 @@ James Cole has also contributed support for the diff --git a/blog/2015/04/25/release-notes/index.html b/blog/2015/04/25/release-notes/index.html index c42f6e8b9d..cfb79e8ff9 100644 --- a/blog/2015/04/25/release-notes/index.html +++ b/blog/2015/04/25/release-notes/index.html @@ -356,6 +356,12 @@ James has also contributed support for integrating Transmission into Home Assist 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 1a08fc2e31..5bdfef6b03 100644 --- a/blog/2015/05/09/utc-time-zone-awareness/index.html +++ b/blog/2015/05/09/utc-time-zone-awareness/index.html @@ -245,6 +245,12 @@ diff --git a/blog/2015/05/14/release-notes/index.html b/blog/2015/05/14/release-notes/index.html index 4f37940f35..871d2c8577 100644 --- a/blog/2015/05/14/release-notes/index.html +++ b/blog/2015/05/14/release-notes/index.html @@ -382,6 +382,12 @@ Before diving into the newly supported devices and services, I want to highlight diff --git a/blog/2015/06/10/release-notes/index.html b/blog/2015/06/10/release-notes/index.html index 73a9352d65..e9e15b20f2 100644 --- a/blog/2015/06/10/release-notes/index.html +++ b/blog/2015/06/10/release-notes/index.html @@ -461,6 +461,12 @@ This switch platform allows you to control your motion detection setting on your 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 f2437a6188..ae0bf14096 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 @@ -405,6 +405,12 @@ Fabian has added support for Forecast.io to g 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 a4dcfca8ce..39264f9a24 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 @@ -368,6 +368,12 @@ Support for Temper temperature sensors has been contributed by +
  • + Alarms, Sonos and iTunes now supported +
  • + + +
  • Remote Monitoring with Glances
  • @@ -391,12 +397,6 @@ Support for Temper temperature sensors has been contributed by - Laundry Automation: insight and notifications - - - 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 a5bb7d8a8c..30f8a1d598 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 @@ -246,6 +246,12 @@ 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 9c0f4fd8cd..39ddac3649 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 @@ -430,6 +430,12 @@ 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 44dc04cc50..22e90c153d 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 @@ -376,6 +376,12 @@ or AM2302 device.

    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 11c52f12e3..d54f707725 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 @@ -515,6 +515,12 @@ The MQTT support was added to H diff --git a/blog/2015/09/13/home-assistant-meets-ifttt/index.html b/blog/2015/09/13/home-assistant-meets-ifttt/index.html index d65522029d..37a322a30e 100644 --- a/blog/2015/09/13/home-assistant-meets-ifttt/index.html +++ b/blog/2015/09/13/home-assistant-meets-ifttt/index.html @@ -23,7 +23,7 @@ - + @@ -148,58 +148,37 @@ -

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +

    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.

    +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:

    - - - @@ -228,27 +207,17 @@ host address and api password.

    - -

    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
    @@ -272,25 +241,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
     
    - -

    Turn on lights when I get home

    - - -

    - -

    Maker channel setup:

    - - - @@ -319,25 +278,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - -

    Flash lights when a new PR comes in for Home Assistant

    - - -

    - -

    Maker channel setup:

    - - - @@ -366,25 +315,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - -

    Fire events when pressing the DO button

    - - -

    - -

    Maker channel setup:

    - - - @@ -410,8 +349,6 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann - - @@ -476,6 +413,12 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann 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 c6d638e1a1..e483bbf626 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 @@ -295,6 +295,12 @@ Inspried by a fea diff --git a/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html b/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html new file mode 100644 index 0000000000..f329ee772d --- /dev/null +++ b/blog/2015/09/19/alarm-sonos-and-itunes-support/index.html @@ -0,0 +1,397 @@ + + + + + + + + + + + + Alarms, Sonos and iTunes now supported - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    + +
    + + +
    +
    + +

    Alarms, Sonos and iTunes now supported

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

    It’s like someone opened a can of rock solid developers and emptied it above our +chat channel because it exploded with +great conversations and solid contributions. Featured in release 0.7.3: Sonos, iTunes, Alarm component and Automation upgrade.

    + +

    See GitHub for more detailed release notes.

    + +

    Migration note: the scheduler component has been removed in favor of the automation component.

    + +

    Sonos
    + +Sonos support has been added by @rhooper and @SEJeff. Home Assistant is now able to automatically +detect Sonos devices in your network and set them up for you. It will allow you to control music +playing on your Sonos and change the volume.

    + +

    iTunes and airplay speakers
    + +@maddox has contributed support for controlling iTunes and airplay speakers. For this to work you will +have to run itunes-api on your Mac as middleware.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +
    # Example configuration.yaml entry
    +media_player:
    +  platform: itunes
    +  name: iTunes
    +  host: http://192.168.1.50
    +  port: 8181
    + + + + + + + +

    Automation
    +Automation has gotten a lot of love. It now supports conditions, multiple triggers and new types of +triggers. The best to get started with it is to head over to the new +getting started with automation page.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +7
    +8
    +9
    +10
    +11
    +12
    +13
    +14
    +15
    +16
    +17
    +18
    +19
    +20
    +
    # Example of entry in configuration.yaml
    +automation:
    +  alias: Light on in the evening
    +  trigger:
    +    - platform: sun
    +      event: sunset
    +      offset: "-01:00:00"
    +    - platform: state
    +      entity_id: group.all_devices
    +      state: home
    +  condition:
    +    - platform: state
    +      entity_id: group.all_devices
    +      state: home
    +    - platform: time
    +      after: "16:00:00"
    +      before: "23:00:00"
    +  action:
    +    service: homeassistant.turn_on
    +    entity_id: group.living_room
    +
    + + +

    Verisure Alarms
    + +We now support arming and disarming your verisure alarm from within Home Assistant thanks to added +support by @persandstrom.

    + + + + + +
    +

    Comments

    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/archives/index.html b/blog/archives/index.html index 580fd8b22c..9484ab9939 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -22,7 +22,7 @@ - + @@ -115,6 +115,43 @@
    +
    + +
    + +
    +
    +

    Alarms, Sonos and iTunes now supported

    + + + +
    +
    + +
    +
    + + + +
    + +
    @@ -1065,6 +1102,12 @@ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 952c265775..4ecdfbc5dc 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: architecture | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/index.html b/blog/categories/architecture/index.html index 6017279bb7..6fbbfbe68d 100644 --- a/blog/categories/architecture/index.html +++ b/blog/categories/architecture/index.html @@ -207,6 +207,12 @@ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index e3f7de7bce..f68999d80a 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: branding | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/branding/index.html b/blog/categories/branding/index.html index 7c2cb6923b..b009729fd4 100644 --- a/blog/categories/branding/index.html +++ b/blog/categories/branding/index.html @@ -207,6 +207,12 @@ diff --git a/blog/categories/component/atom.xml b/blog/categories/component/atom.xml index 8ac4d02eef..d0f371e6c1 100644 --- a/blog/categories/component/atom.xml +++ b/blog/categories/component/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: component | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/component/index.html b/blog/categories/component/index.html index 022b3d5500..28e2e7c470 100644 --- a/blog/categories/component/index.html +++ b/blog/categories/component/index.html @@ -320,6 +320,12 @@ diff --git a/blog/categories/core/atom.xml b/blog/categories/core/atom.xml index a5002b7fcb..e131127194 100644 --- a/blog/categories/core/atom.xml +++ b/blog/categories/core/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: core | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/core/index.html b/blog/categories/core/index.html index ed19e6d796..a744e7527e 100644 --- a/blog/categories/core/index.html +++ b/blog/categories/core/index.html @@ -244,6 +244,12 @@ diff --git a/blog/categories/frontend/atom.xml b/blog/categories/frontend/atom.xml index 36188e242b..47992d8bf1 100644 --- a/blog/categories/frontend/atom.xml +++ b/blog/categories/frontend/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: frontend | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/frontend/index.html b/blog/categories/frontend/index.html index 37fb1c65a2..344843d1ab 100644 --- a/blog/categories/frontend/index.html +++ b/blog/categories/frontend/index.html @@ -246,6 +246,12 @@ diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index 18ff7120bc..ef0211e966 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-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ @@ -90,58 +90,37 @@ Glances web server started on http://0.0.0.0:61208/ 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 + 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.

    +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 +

    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

    - - - +

    Turn off irregation system when not needed

    - -

    Maker channel setup:

    - - - @@ -170,64 +149,38 @@ host address and api password.

    - - -

    Tweet when important events happen

    - - - +

    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.

    +
    # Configuration.yaml entry
    +automation:
    +  alias: Post a tweet when fire alarm is triggered
     
    -

    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

    - + 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:

    - - - @@ -256,25 +209,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - -

    Flash lights when a new PR comes in for Home Assistant

    - - - +

    Flash lights when a new PR comes in for Home Assistant

    - -

    Maker channel setup:

    - - - @@ -303,25 +246,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - -

    Fire events when pressing the DO button

    - - - +

    Fire events when pressing the DO button

    - -

    Maker channel setup:

    - - - @@ -345,8 +278,6 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - ]]>
    diff --git a/blog/categories/how-to/index.html b/blog/categories/how-to/index.html index 815b98b0db..9b9e2dbcba 100644 --- a/blog/categories/how-to/index.html +++ b/blog/categories/how-to/index.html @@ -283,6 +283,12 @@ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 7c83a133c2..5c3e92e8cd 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-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ @@ -13,63 +13,111 @@ Octopress + + <![CDATA[Alarms, Sonos and iTunes now supported]]> + + 2015-09-19T07:47:00-07:00 + https://home-assistant.io/blog/2015/09/19/alarm-sonos-and-itunes-support + It’s like someone opened a can of rock solid developers and emptied it above our +chat channel because it exploded with +great conversations and solid contributions. Featured in release 0.7.3: Sonos, iTunes, Alarm component and Automation upgrade.

    + +

    See GitHub for more detailed release notes.

    + +

    Migration note: the scheduler component has been removed in favor of the automation component.

    + +

    Sonos
    + +Sonos support has been added by @rhooper and @SEJeff. Home Assistant is now able to automatically +detect Sonos devices in your network and set them up for you. It will allow you to control music +playing on your Sonos and change the volume.

    + +

    iTunes and airplay speakers
    + +@maddox has contributed support for controlling iTunes and airplay speakers. For this to work you will +have to run itunes-api on your Mac as middleware.

    + +
    # Example configuration.yaml entry
    +media_player:
    +  platform: itunes
    +  name: iTunes
    +  host: http://192.168.1.50
    +  port: 8181
    +
    + + + + +

    Automation
    +Automation has gotten a lot of love. It now supports conditions, multiple triggers and new types of +triggers. The best to get started with it is to head over to the new +getting started with automation page.

    + +
    # Example of entry in configuration.yaml
    +automation:
    +  alias: Light on in the evening
    +  trigger:
    +    - platform: sun
    +      event: sunset
    +      offset: "-01:00:00"
    +    - platform: state
    +      entity_id: group.all_devices
    +      state: home
    +  condition:
    +    - platform: state
    +      entity_id: group.all_devices
    +      state: home
    +    - platform: time
    +      after: "16:00:00"
    +      before: "23:00:00"
    +  action:
    +    service: homeassistant.turn_on
    +    entity_id: group.living_room
    +
    + +

    Verisure Alarms
    + +We now support arming and disarming your verisure alarm from within Home Assistant thanks to added +support by @persandstrom.

    +]]>
    +
    + <![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 + 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.

    +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 +

    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

    - - - +

    Turn off irregation system when not needed

    - -

    Maker channel setup:

    - - - @@ -98,64 +146,38 @@ host address and api password.

    - - -

    Tweet when important events happen

    - - - +

    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.

    +
    # Configuration.yaml entry
    +automation:
    +  alias: Post a tweet when fire alarm is triggered
     
    -

    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

    - + 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:

    - - - @@ -184,25 +206,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - -

    Flash lights when a new PR comes in for Home Assistant

    - - - +

    Flash lights when a new PR comes in for Home Assistant

    - -

    Maker channel setup:

    - - - @@ -231,25 +243,15 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - -

    Fire events when pressing the DO button

    - - - +

    Fire events when pressing the DO button

    - -

    Maker channel setup:

    - - - @@ -273,8 +275,6 @@ Setup Maker channel with event name HA_FIRE_ALARM and Twitter chann
    - - ]]>
    @@ -540,178 +540,6 @@ sensor: - visibility - ozone -]]> - - - - <![CDATA[Release notes for June 10, 2015]]> - - 2015-06-10T18:54:00-07:00 - https://home-assistant.io/blog/2015/06/10/release-notes - Wow, almost a month has gone by since the last release and this release is packed. The biggest part of this release is probably one that you won’t notice: the frontend has been upgraded from Polymer 0.5 to the brand new released Polymer 1.0. Polymer has been declared stable by the Google overlords which will allow us to expand functionality that was waiting for this moment to arrive.

    - -

    This release sets a record for the amount of people involved: 8! Andythigpen, Jamespcole, Azelphur, Fabaff, Dutchy-, Fbradyirl, wind-rider and ettisan, thanks a lot for your contributions!

    - -

    A big improvement has been brought this release by wind-rider. He took the time to revive the Chromecast support and started improving the media player integration. This triggered other people to join in resulting in a revamped media player experience and support for the Music Player Daemon.

    - -

    - - Example of the new media player cards -

    - - - - -

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

    - - - - - - - -

    Before jumping into the newly supported platforms, here are the other improvements that are landing this release:

    - -
      -
    • Fronted upgraded to Polymer 1.0 by @balloob
    • -
    • Include other YAML files using the !include keyword by @andythigpen
    • -
    • Switch support and bug fixes for Vera platform by @jamespcole
    • -
    • HTTP session support for the HTTP component by @jamespcole
    • -
    • Device tracker bugfixes by @Dutchy-
    • -
    • Bugfix for device tracker platform by @fbradyirl
    • -
    • Fixing Chromecast support by @wind-rider
    • -
    • Media player improvements by @balloob and @wind-rider
    • -
    • Nest thermostat bugfixes by @balloob
    • -
    • Fix the device tracker getting in a deadlock by @balloob
    • -
    • Update documentation by @fabaff
    • -
    - - -

    Music Player Daemon
    - -Fabaff has contributed MusicPlayerDaemon support. The mpd platform allows you to control a Music Player Daemon from Home Assistant. Right now, only playback is supported and not playlist manipulation.

    - -
    # Example configuration.yaml entry
    -media_player:
    -  platform: mpd
    -  server: 127.0.0.1
    -  port: 6600
    -  location: bedroom
    -
    - -

    Command line switch
    -A switch platform that issues specific commands when it is turned on and off. This might very well become our most popular platform as it allows anyone to integrate any type of switch into Home Assistant that can be controlled from the command line, including calling other scripts!

    - -
    # Example configuration.yaml entry
    -switch:
    -  platform: command_switch
    -  switches:
    -    - kitchen_light:
    -        oncmd: switch_command on kitchen
    -        offcmd: switch_command off kitchen
    -
    - -

    LimitlessLED
    -This new platform can control your LimitlessLED lights from within Home Assistant. The lights are also known as EasyBulb, AppLight, AppLamp, MiLight, LEDme, dekolight or iLight.

    - -
    # Example configuration.yaml entry
    -light:
    -  platform: limitlessled
    -  host: 192.168.1.10
    -  group_1_name: Living Room
    -  group_2_name: Bedroom
    -  group_3_name: Office
    -  group_4_name: Kitchen
    -
    - -

    Bitcoin sensor
    - -The bitcoin platform displays various details about the Bitcoin network. If you have an online wallet from Blockchain.info the sensor is capable to show your current balance.

    - -
    # Example configuration.yaml entry
    -sensor:
    -  platform: bitcoin
    -  wallet: 'YOUR WALLET_ID'
    -  password: YOUR_ACCOUNT_PASSWORD
    -  currency: YOUR CURRENCY
    -  display_options:
    -    - exchangerate
    -    - trade_volume_btc
    -    - miners_revenue_usd
    -    - btc_mined
    -    - trade_volume_usd
    -    - difficulty
    -    - minutes_between_blocks
    -    - number_of_transactions
    -    - hash_rate
    -    - timestamp
    -    - mined_blocks
    -    - blocks_size
    -    - total_fees_btc
    -    - total_btc_sent
    -    - estimated_btc_sent
    -    - total_btc
    -    - total_blocks
    -    - next_retarget
    -    - estimated_transaction_volume_usd
    -    - miners_revenue_btc
    -    - market_price_usd
    -
    - -

    SMTP notificatoin platform
    - -The smtp platform allows you to deliver notifications from Home Assistant to an e-mail recipient.

    - -
    # Example configuration.yaml entry
    -notify:
    -  platform: mail
    -  server: MAIL_SERVER
    -  port: YOUR_SMTP_PORT
    -  sender: SENDER_EMAIL_ADDRESS
    -  starttls: 1 or 0
    -  username: YOUR_SMTP_USERNAME
    -  password: YOUR_SMTP_PASSWORD
    -  recipient: YOUR_RECIPIENT
    -
    - -

    Syslog notification platform
    -The syslog platform allows you to deliver notifications from Home Assistant to the local syslog.

    - -
    # Example configuration.yaml entry
    -notify:
    -  platform: syslog
    -
    - -

    Swiss Public transport sensor
    -The swiss public transport sensor will give you the next two departure times from a given location to another one in Switzerland. See the component page for more information how to set it up.

    - -

    Transmission turtle mode switch
    - -The transmission platform allows you to control your Transmission client from within Home Assistant. The platform enables you switch to your ‘Alternative Speed Limits’ (aka ‘Turtle mode’) setting.

    - -
    # Example configuration.yaml entry
    -switch:
    -  platform: transmission
    -  name: Transmission
    -  host: 192.168.1.26
    -  port: 9091
    -  username: YOUR_USERNAME
    -  password: YOUR_PASSWORD
    -
    - -

    Hikvision camera motion detection support
    -This switch platform allows you to control your motion detection setting on your Hikvision camera.

    - -
    # Example configuration.yaml entry
    -switch:
    -    platform: hikvisioncam
    -    name: Hikvision Cam 1 Motion Detection
    -    host: 192.168.1.26
    -    username: YOUR_USERNAME
    -    password: YOUR_PASSWORD
    -
    ]]>
    diff --git a/blog/categories/release-notes/index.html b/blog/categories/release-notes/index.html index c189701a98..727ed181c0 100644 --- a/blog/categories/release-notes/index.html +++ b/blog/categories/release-notes/index.html @@ -115,6 +115,43 @@ + + + +
    + +
    @@ -542,6 +579,12 @@ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 6d8ea6654a..e90808ca75 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-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/index.html b/blog/categories/user-stories/index.html index 0bf90c07bd..1559d3c7d3 100644 --- a/blog/categories/user-stories/index.html +++ b/blog/categories/user-stories/index.html @@ -244,6 +244,12 @@ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 7024d95b61..c34a171662 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: website | Home Assistant]]> - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 https://home-assistant.io/ diff --git a/blog/categories/website/index.html b/blog/categories/website/index.html index f21cb925fa..93ef76acd2 100644 --- a/blog/categories/website/index.html +++ b/blog/categories/website/index.html @@ -207,6 +207,12 @@ diff --git a/blog/index.html b/blog/index.html index 6d3916514a..0369fc85ab 100644 --- a/blog/index.html +++ b/blog/index.html @@ -22,7 +22,7 @@ - + @@ -97,6 +97,104 @@ +
    +
    + +

    + Alarms, Sonos and iTunes now supported +

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

    It’s like someone opened a can of rock solid developers and emptied it above our +chat channel because it exploded with +great conversations and solid contributions. Featured in release 0.7.3: Sonos, iTunes, Alarm component and Automation upgrade.

    + +

    See GitHub for more detailed release notes.

    + +

    Migration note: the scheduler component has been removed in favor of the automation component.

    + +

    Sonos
    + +Sonos support has been added by @rhooper and @SEJeff. Home Assistant is now able to automatically +detect Sonos devices in your network and set them up for you. It will allow you to control music +playing on your Sonos and change the volume.

    + +

    iTunes and airplay speakers
    + +@maddox has contributed support for controlling iTunes and airplay speakers. For this to work you will +have to run itunes-api on your Mac as middleware.

    + +
    1
    +2
    +3
    +4
    +5
    +6
    +
    # Example configuration.yaml entry
    +media_player:
    +  platform: itunes
    +  name: iTunes
    +  host: http://192.168.1.50
    +  port: 8181
    + + + + + + Read on → +
    + +
    +
    + +
    @@ -220,31 +318,23 @@ Inspried by a fea
    -

    Today we announce the release of Home Assistant v0.7.2 which includes brand new support by +

    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.

    +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 →
    @@ -870,82 +960,6 @@ To update to the latest version, run scripts/update. Please report

    - -
    -
    - -

    - Release notes for May 14, 2015 -

    - - - -
    - - - - - - - - - - - - - - - - - - - five minutes reading time - - - - - - - - - Comments - -
    - -
    - - - - -
    -

    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. -

    - - - - - - Read on → -
    - -
    -
    -

    - Use quotes around your values for state_from and state_to to avoid the YAML parser interpreting some values as booleans. + Use quotes around your values for from and to to avoid the YAML parser interpreting some values as booleans.

    @@ -309,7 +309,7 @@ hour when it is 5 minutes past whole.

    # All following are optional. # When 'after' is used, you cannot also match on hour, minute, seconds. # Military time format. - after: 15:32:00 + after: "15:32:00" hours: 10 minutes: 5 seconds: 0 @@ -403,8 +403,8 @@ certain day of the week.

    condition: platform: time # At least one of the following is required. - after: 15:00:00 - before: 23:00:00 + after: "15:00:00" + before: "23:00:00" weekday: - mon - wed diff --git a/components/media_player.itunes.html b/components/media_player.itunes.html index d13aa8c66b..81e7acfcb1 100644 --- a/components/media_player.itunes.html +++ b/components/media_player.itunes.html @@ -106,21 +106,14 @@

    - The iTunes platform allows you to control iTunes via - itunes-api from Home Assistant. Play, - pause, or skip songs remotely on iTunes running on your Mac.

    + The iTunes platform allows you to control iTunes from Home Assistant. + It uses a 3rd party server that you run on your Mac called + itunes-api. Play, pause, or skip songs remotely on iTunes + running on your Mac.

    Your AirPlay speakers will also be exposed as simple media players inside Home Assistant. They will be available to be turned on or off or set their volume.

    -

    -iTunes itself can not be remotely controlled. In order to control your iTunes, -you’ll need to install middleware named itunes-api. itunes-api is a simple REST -server that talks to a local instance of iTunes via Applescript. It’s very easy to set up -and run. You can find more about it on it’s [GitHub repo](https://github.com/maddox/itunes-api). -

    - -

    To add iTunes to your installation, add the following to your configuration.yaml file:

    1
    diff --git a/components/media_player.sonos.html b/components/media_player.sonos.html
    index 4f225aa76a..3c866af8ad 100644
    --- a/components/media_player.sonos.html
    +++ b/components/media_player.sonos.html
    @@ -105,7 +105,7 @@
       
    -

    +

    The sonos platform allows you to control your Sonos HiFi wireless speakers and audio components from Home Assistant.

    To add your Sonos components to your installation, add the following to your configuration.yaml file. It will perform auto-discovery of your connected speakers.

    diff --git a/getting-started/automation.html b/getting-started/automation.html index 476138ed37..9951bc8bb2 100644 --- a/getting-started/automation.html +++ b/getting-started/automation.html @@ -113,7 +113,7 @@ offers a few built-in automations but main

    Every automation rule consists of triggers, an action to be performed and optional conditions.

    -

    Triggers can be any event observed in Home Assistant. For example, it can be a certain point in time +

    Triggers can be anything observed in Home Assistant. For example, it can be a certain point in time or a person coming home, which can be observed by the state changing from not_home to home.

    Actions will call services within Home Assistant. For example, turn a light on, set the temperature @@ -170,9 +170,13 @@ example tell which device to turn on or what color to use.

    Creating your first automation rule

    -

    Before we dive deeper into what every piece of automation can do, let’s loot at a simple automation +

    Before we dive deeper into what every piece of automation can do, let’s look at a simple automation rule: Turn on the lights when the sun sets

    +

    In this example, we are defining a trigger to track the sunset and tell it to fire when the sun is +setting. When this event is triggered, the service light.turn_on is called without any +parameters. Because we specify no parameters, it will turn on all the lights.

    +
    1
     2
     3
    @@ -192,10 +196,6 @@ rule: Turn on the lights when the sun sets

    -

    In this example, we are defining a trigger to track the sunset and tell it to fire one hour before -the sun is setting. When this event is triggered, the service light.turn_on is called without any -parameters. Because we specify no parameters, it will turn on all the lights.

    -

    After a few days of running this automation rule you come to realize that this automation rule is not good enough. It was already dark when the lights went on and the one day you weren’t home, the lights turned on anyway. Time for some tweaking. Let’s add an offset to the sunset trigger and a condition diff --git a/sitemap.xml b/sitemap.xml index f5dd65f891..44d2489250 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,5 +1,10 @@ + + https://home-assistant.io/blog/2015/09/19/alarm-sonos-and-itunes-support/ + 2015-09-19T07:47:00-07:00 + 0.8 + https://home-assistant.io/blog/2015/09/18/monitoring-with-glances-and-home-assistant/ 2015-09-18T02:00:00-07:00 @@ -122,691 +127,691 @@ https://home-assistant.io/developers/add_new_platform.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/android.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/api.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/architecture.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/arduino.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/automation.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/automation.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/autostart.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/browser.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/camera.foscam.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/camera.generic.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/configuration.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/configurator.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/conversation.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/creating_components.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/credits.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_sun_light_trigger.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.actiontec.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.aruba.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.asuswrt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.ddwrt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.luci.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.mqtt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.netgear.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.thomson.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tomato.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/device_tracker.tplink.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/devices.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/discovery.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/downloader.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/frontend.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/group.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/history.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/ifttt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 1.0 https://home-assistant.io/blog/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/blog/archives/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/help/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/ - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/isy994.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/keyboard.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/light.hue.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/light.limitlessled.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/light.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/logbook.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.cast.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.denon.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.itunes.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.kodi.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.mpd.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.sonos.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/media_player.squeezebox.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/modbus.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/mqtt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.file.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.instapush.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.nma.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushbullet.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.pushover.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.slack.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.smtp.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.syslog.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/notify.xmpp.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/python_api.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/rest_api.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/scene.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/script.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arduino.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.arest.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.bitcoin.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.command_sensor.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.dht.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.efergy.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.forecast.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.glances.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mqtt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.mysensors.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.openweathermap.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rfxtrx.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.rpi_gpio.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.sabnzbd.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.systemmonitor.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.temper.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.time_date.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sensor.transmission.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/simple_alarm.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/sun.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.arduino.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.arest.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.command_switch.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.edimax.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.hikvision.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.mqtt.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.rpi_gpio.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.transmission.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/switch.wemo.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/tellstick.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.heat_control.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/thermostat.nest.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting-configuration.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/getting-started/troubleshooting.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/vera.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/verisure.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/developers/website.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/wink.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7 https://home-assistant.io/components/zwave.html - 2015-09-19T22:10:53-07:00 + 2015-09-19T23:32:27-07:00 weekly 0.7