diff --git a/atom.xml b/atom.xml index b79c4712c0..05796845e1 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
Home Assistant Configuration:
++The automation and script syntax here is using a deprecated and no longer supported format. +
+mqtt: broker: 192.168.1.100 diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 8bc764dff1..8683ec0517 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@- 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index 9b877f8441..9ca707407d 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index 563117b669..ee96444457 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index d6ca52d964..461484c771 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index a5fe7ca880..72fd1a6b43 100644 --- a/blog/categories/how-to/atom.xml +++ b/blog/categories/how-to/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index 5267fcc194..629e09dcde 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/public-service-announcement/atom.xml b/blog/categories/public-service-announcement/atom.xml index 4c5febd042..e218182ecf 100644 --- a/blog/categories/public-service-announcement/atom.xml +++ b/blog/categories/public-service-announcement/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index a6401d23b3..db514a9784 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index 8b6ce1c6d4..b8c3a5958e 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 57a2869502..f783d09d4f 100644 --- a/blog/categories/user-stories/atom.xml +++ b/blog/categories/user-stories/atom.xml @@ -4,7 +4,7 @@ - 2016-03-27T00:41:02+00:00 +2016-03-27T01:29:21+00:00 https://home-assistant.io/ @@ -64,6 +64,10 @@ Home Assistant Configuration:
++The automation and script syntax here is using a deprecated and no longer supported format. +
+diff --git a/sitemap.xml b/sitemap.xml index 84f8a5b394..e24bd43d93 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1323,630 +1323,630 @@diff --git a/cookbook/restart_ha_if_wemo_switch_is_not_detected/index.html b/cookbook/restart_ha_if_wemo_switch_is_not_detected/index.html index 05a95e8ee7..36f1a6d4a3 100644 --- a/cookbook/restart_ha_if_wemo_switch_is_not_detected/index.html +++ b/cookbook/restart_ha_if_wemo_switch_is_not_detected/index.html @@ -156,11 +156,11 @@ sequence: - delay: minutes: 15 - - execute_service: notify.pushbullet - service_data: + - service: notify.pushbullet + data: message: 'WeMo not found, restarting HA' - - execute_service: switch.turn_on - service_data: + - service: switch.turn_on + data: entity_id: switch.killhass automation: diff --git a/cookbook/turn_on_light_for_10_minutes_when_motion_detected/index.html b/cookbook/turn_on_light_for_10_minutes_when_motion_detected/index.html index 3b0469a1da..fdd94e21bf 100644 --- a/cookbook/turn_on_light_for_10_minutes_when_motion_detected/index.html +++ b/cookbook/turn_on_light_for_10_minutes_when_motion_detected/index.html @@ -133,15 +133,15 @@ alias: "Turn on lamp and set timer" sequence: # Cancel ev. old timers - - execute_service: script.turn_off - service_data: + - service: script.turn_off + data: entity_id: script.timer_off - - execute_service: light.turn_on - service_data: + - service: light.turn_on + data: entity_id: light.kitchen # Set new timer - - execute_service: script.turn_on - service_data: + - service: script.turn_on + data: entity_id: script.timer_off timer_off: @@ -149,8 +149,8 @@ sequence: - delay: minutes: 10 - - execute_service: light.turn_off - service_data: + - service: light.turn_off + data: entity_id: light.kitchenmqtt: broker: 192.168.1.100 diff --git a/cookbook/foscam_away_mode_PTZ/index.html b/cookbook/foscam_away_mode_PTZ/index.html index 6741c0049a..dfe21728c9 100644 --- a/cookbook/foscam_away_mode_PTZ/index.html +++ b/cookbook/foscam_away_mode_PTZ/index.html @@ -154,18 +154,18 @@ The following outlines examples of the switch, services, and scripts required toscript: foscam_off: sequence: - - execute_service: switch.turn_off - service_data: + - service: switch.turn_off + data: entity_id: switch.foscam_motion - service: shell_command.foscam_turn_off foscam_on: sequence: - - execute_service: switch.turn_off - service_data: + - service: switch.turn_off + data: entity_id: switch.foscam_motion - service: shell_command.foscam_turn_on - - execute_service: switch.turn_on - service_data: + - service: switch.turn_on + data: entity_id: switch.foscam_motionhttps://home-assistant.io/components/alarm_control_panel.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/alarm_control_panel.manual.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/alarm_control_panel.mqtt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/arduino.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/automation.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/browser.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/camera.foscam.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/camera.generic.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/configurator.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/conversation.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_sun_light_trigger.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.actiontec.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.aruba.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.asuswrt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.ddwrt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.locative.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.luci.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.mqtt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.netgear.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.nmap_scanner.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.owntracks.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.snmp.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.thomson.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.tomato.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.tplink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/device_tracker.ubus.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/discovery.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/downloader.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/ecobee.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/group.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/history.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/ifttt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/ifttt.manything.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/introduction.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/isy994.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/keyboard.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.blinksticklight.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.hue.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.hyperion.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.limitlessled.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.rfxtrx.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.tellstick.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.vera.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/light.wink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/lock.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/lock.wink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/logbook.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.cast.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.denon.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.firetv.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.itunes.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.kodi.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.mpd.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.plex.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.sonos.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/media_player.squeezebox.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/modbus.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/mqtt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.file.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.instapush.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.nma.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.pushbullet.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.pushover.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.slack.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.smtp.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.syslog.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.telegram.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/notify.xmpp.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/rfxtrx.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/scene.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/script.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.arduino.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.arest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.bitcoin.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.command_sensor.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.cpuspeed.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.dht.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.ecobee.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.efergy.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.forecast.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.glances.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.modbus.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.mqtt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.mysensors.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.openweathermap.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.rest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.rfxtrx.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.rpi_gpio.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.sabnzbd.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.speedtest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.swiss_public_transport.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.systemmonitor.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.tellstick.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.temper.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.time_date.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.transmission.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.vera.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.wink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sensor.worldclock.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/shell_command.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/simple_alarm.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/sun.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.arduino.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.arest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.command_switch.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.edimax.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.hikvision.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.modbus.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.mqtt.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.pulseaudio_loopback.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.rest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.rfxtrx.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.rpi_gpio.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.tellstick.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.transmission.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.vera.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.wemo.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/switch.wink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/tellstick.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/thermostat.ecobee.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/thermostat.heat_control.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/thermostat.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/thermostat.nest.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/thermostat.radiotherm.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/vera.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/verisure.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/wink.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/zone.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/components/zwave.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/demo/frontend.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/demo/index.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/add_new_platform.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/api.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/architecture.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/creating_components.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/credits.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/frontend.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/python_api.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/rest_api.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/developers/website.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/android.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/automation.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/autostart.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/configuration.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/devices.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/presence-detection.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/templating.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/troubleshooting-configuration.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/getting-started/troubleshooting.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/googlef4f3693c209fe788.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00 https://home-assistant.io/static/mdi-demo.html -2016-03-27T00:40:18+00:00 +2016-03-27T01:28:39+00:00