diff --git a/atom.xml b/atom.xml index 71f9472b65..ff403a6d06 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/architecture/atom.xml b/blog/categories/architecture/atom.xml index 0abf89c81f..138f761ac2 100644 --- a/blog/categories/architecture/atom.xml +++ b/blog/categories/architecture/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Architecture | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/branding/atom.xml b/blog/categories/branding/atom.xml index 90c9d3240c..5788d9e982 100644 --- a/blog/categories/branding/atom.xml +++ b/blog/categories/branding/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Branding | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index eb27e81a15..f9070a727f 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Community | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index 644e7eb3ce..26ed0f6037 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: ESP8266 | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index 0137dfaa66..f5b79b159b 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]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index fff60b8646..95e5d8b661 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: MQTT | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+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 bc765422f5..31a7416543 100644 --- a/blog/categories/public-service-announcement/atom.xml +++ b/blog/categories/public-service-announcement/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Public-Service-Announcement | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index 270112a6eb..a5b4e68d8b 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]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index 959a37ac57..c9cd49a162 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Survey | Home Assistant]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 99302568f9..60e046e2dd 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]]> - 2016-02-22T14:31:39+00:00 + 2016-02-22T15:17:17+00:00 https://home-assistant.io/ diff --git a/cookbook/python_component_basic_service/index.html b/cookbook/python_component_basic_service/index.html index 9d4d70aae9..8cedcb128a 100644 --- a/cookbook/python_component_basic_service/index.html +++ b/cookbook/python_component_basic_service/index.html @@ -113,20 +113,20 @@
-

This is a simple hello world example to show the basics of registering a service. To use this example, create the file <config dir>/custom_components/hello_service.py and copy the below example code.

+

This is a simple “hello world” example to show the basics of registering a service. To use this example, create the file <config dir>/custom_components/hello_service.py and copy the below example code.

-

Services can be called from automation and from the service developer tools in the frontend.

+

Services can be called from automation and from the service “Developer tools” in the frontend.

-
# The domain of your component. Should be equal to the name of your component
-DOMAIN = "hello_service"
+  
# The domain of your component. Should be equal to the name of your component.
+DOMAIN = 'hello_service'
 
 ATTR_NAME = 'name'
 DEFAULT_NAME = 'World'
 
 
 def setup(hass, config):
-    """ Setup is called when Home Assistant is loading our component. """
+    """Setup is called when Home Assistant is loading our component."""
 
     def handle_hello(call):
         name = call.data.get(ATTR_NAME, DEFAULT_NAME)
@@ -135,7 +135,7 @@ DEFAULT_NAME = ''hello', handle_hello)
 
-    # return boolean to indicate that initialization was successful
+    # Return boolean to indicate that initialization was successfully.
     return True
 
diff --git a/cookbook/python_component_basic_state/index.html b/cookbook/python_component_basic_state/index.html index 3705859d7e..4f8dc7f724 100644 --- a/cookbook/python_component_basic_state/index.html +++ b/cookbook/python_component_basic_state/index.html @@ -116,15 +116,15 @@

This is a simple hello world example to show the basics for setting a state. To use this example, create the file <config dir>/custom_components/hello_state.py and copy the below example code.

-
# The domain of your component. Should be equal to the name of your component
-DOMAIN = "hello_state"
+  
# The domain of your component. Should be equal to the name of your component.
+DOMAIN = 'hello_state'
 
 CONF_NAME = 'name'
 DEFAULT_NAME = 'World'
 
 
 def setup(hass, config):
-    """ Setup is called when Home Assistant is loading our component. """
+    """Setup is called when Home Assistant is loading our component."""
 
     # Get the name from the configuration. Use DEFAULT_NAME if no name provided.
     name = config[DOMAIN].get(CONF_NAME, DEFAULT_NAME)
@@ -132,7 +132,7 @@ DEFAULT_NAME = '# States are in the format DOMAIN.OBJECT_ID
     hass.states.set('hello_state.hello', name)
 
-    # return boolean to indicate that initialization was successful
+    # Return boolean to indicate that initialization was successfully.
     return True
 
diff --git a/cookbook/python_component_mqtt_basic/index.html b/cookbook/python_component_mqtt_basic/index.html index 100208dd87..81db84defd 100644 --- a/cookbook/python_component_mqtt_basic/index.html +++ b/cookbook/python_component_mqtt_basic/index.html @@ -124,10 +124,10 @@ This example requires you to have the MQTT component
import homeassistant.loader as loader
 
-# The domain of your component. Should be equal to the name of your component
+# The domain of your component. Should be equal to the name of your component.
 DOMAIN = "hello_mqtt"
 
-# List of component names (string) your component depends upon
+# List of component names (string) your component depends upon.
 DEPENDENCIES = ['mqtt']
 
 
@@ -136,31 +136,31 @@ DEFAULT_TOPIC = 'def setup(hass, config):
-    """ Setup our hello_mqtt component. """
+    """Setup the Hello MQTT component."""
     mqtt = loader.get_component('mqtt')
     topic = config[DOMAIN].get('topic', DEFAULT_TOPIC)
     entity_id = 'hello_mqtt.last_message'
 
-    # Listener to be called when we receive a message
+    # Listener to be called when we receive a message.
     def message_received(topic, payload, qos):
-        """ A new MQTT message has been received. """
+        """A new MQTT message has been received."""
         hass.states.set(entity_id, payload)
 
-    # Subscribe our listener to a topic
+    # Subscribe our listener to a topic.
     mqtt.subscribe(hass, topic, message_received)
 
     # Set the intial state
     hass.states.set(entity_id, 'No messages')
 
-    # Service to publish a message on MQTT
+    # Service to publish a message on MQTT.
     def set_state_service(call):
-        """ Service to send a message. """
+        """Service to send a message."""
         mqtt.publish(hass, topic, call.data.get('new_state'))
 
-    # Register our service with Home Assistant
+    # Register our service with Home Assistant.
     hass.services.register(DOMAIN, 'set_state', set_state_service)
 
-    # return boolean to indicate that initialization was successful
+    # Return boolean to indicate that initialization was successfully.
     return True
 
diff --git a/sitemap.xml b/sitemap.xml index 04351c0c20..e22ca7133c 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1167,622 +1167,622 @@ https://home-assistant.io/components/alarm_control_panel.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/alarm_control_panel.manual.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/alarm_control_panel.mqtt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/arduino.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/automation.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/browser.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/camera.foscam.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/camera.generic.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/configurator.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/conversation.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_sun_light_trigger.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.actiontec.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.aruba.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.asuswrt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.ddwrt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.locative.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.luci.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.mqtt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.netgear.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.nmap_scanner.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.owntracks.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.snmp.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.thomson.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.tomato.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.tplink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/device_tracker.ubus.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/discovery.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/downloader.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/ecobee.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/group.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/history.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/ifttt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/ifttt.manything.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/introduction.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/isy994.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/keyboard.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.blinksticklight.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.hue.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.hyperion.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.limitlessled.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.rfxtrx.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.tellstick.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.vera.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/light.wink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/lock.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/lock.wink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/logbook.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.cast.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.denon.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.firetv.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.itunes.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.kodi.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.mpd.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.plex.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.sonos.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/media_player.squeezebox.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/modbus.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/mqtt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.file.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.instapush.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.nma.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.pushbullet.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.pushover.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.slack.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.smtp.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.syslog.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.telegram.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/notify.xmpp.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/rfxtrx.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/scene.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/script.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.arduino.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.arest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.bitcoin.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.command_sensor.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.cpuspeed.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.dht.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.ecobee.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.efergy.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.forecast.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.glances.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.modbus.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.mqtt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.mysensors.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.openweathermap.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.rest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.rfxtrx.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.rpi_gpio.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.sabnzbd.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.speedtest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.swiss_public_transport.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.systemmonitor.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.tellstick.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.temper.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.time_date.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.transmission.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.vera.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.wink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sensor.worldclock.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/shell_command.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/simple_alarm.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/sun.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.arduino.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.arest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.command_switch.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.edimax.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.hikvision.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.modbus.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.mqtt.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.rest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.rfxtrx.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.rpi_gpio.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.tellstick.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.transmission.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.vera.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.wemo.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/switch.wink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/tellstick.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/thermostat.ecobee.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/thermostat.heat_control.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/thermostat.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/thermostat.nest.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/thermostat.radiotherm.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/vera.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/verisure.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/wink.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/zone.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/components/zwave.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/demo/frontend.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/demo/index.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/add_new_platform.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/api.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/architecture.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/creating_components.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/credits.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/frontend.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/python_api.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/rest_api.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/developers/website.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/android.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/automation.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/autostart.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/configuration.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/devices.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/presence-detection.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/troubleshooting-configuration.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/getting-started/troubleshooting.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/googlef4f3693c209fe788.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00 https://home-assistant.io/static/mdi-demo.html - 2016-02-22T14:30:57+00:00 + 2016-02-22T15:16:32+00:00