diff --git a/getting-started/configuration/index.html b/getting-started/configuration/index.html
index 21c9ece654..481396ef83 100644
--- a/getting-started/configuration/index.html
+++ b/getting-started/configuration/index.html
@@ -115,19 +115,80 @@
- Home Assistant will create a configuration folder when it is run for the first time. The location of the folder differs between operating systems: on OS X/Linux it’s ~/.homeassistant
and on Windows it’s %APPDATA%/.homeassistant
. If you want to use a different folder for configuration, run hass --config path/to/config
.
+ Home Assistant will create a configuration folder when it is run for the first time. The location of the folder differs between operating systems: on OS X and Linux it’s ~/.homeassistant
and on Windows it’s %APPDATA%/.homeassistant
. If you want to use a different folder for configuration, run hass --config path/to/config
.
-Inside your configuration folder is the file configuration.yaml
. This is the main file that contains which components will be loaded and what their configuration is.
-This file contains YAML code, which is explained briefly in the configuration troubleshooting page. An example configuration file is located here.
+Inside your configuration folder is the file configuration.yaml
. This is the main file that contains which components will be loaded and what their configuration is.
+This file contains YAML code, which is explained briefly below.
+An example configuration file is located here.
-When launched for the first time, Home Assistant will write a default configuration enabling the web interface and device discovery. It can take up to a minute for your devices to be discovered and show up in the interface.
+When launched for the first time, Home Assistant will write a default configuration file enabling the web interface and device discovery. It can take up to a minute for your devices to be discovered and show up in the user interface.
If you run into trouble while configuring Home Assistant, have a look at the configuration troubleshooting page.
-You will have to restart Home Assistant for changes in configuration.yaml
to take effect.
+ You will have to restart Home Assistant each time you make changes in configuration.yaml
in order for these to take effect.
+ YAML
+
+Home Assistant uses the YAML syntax for configuration. YAML might take a while to get used to but is really powerful in allowing you to express complex configurations.
+
+For each component that you want to use in Home Assistant, you add code in your configuraton.yaml
file to specify its settings.
+Example, the following code specifies that you want to use the notify component with the pushbullet platform.
+
+
+
notify:
+ platform: pushbullet
+ api_key: "o.1234abcd"
+ name: pushbullet
+
+
+
+
+
+ - A component provides the core logic for some functionality (like
notify
provides sending notifications).
+ - A platform makes the connection to a specific software or hardware platform (like
pushbullet
works with the service from pushbullet.com).
+
+
+The basics of YAML syntax are block collections and mappings containing key-value pairs.
+Each item in a collection starts with a -
while mappings have the format key: value
. If you specify duplicate keys, the last value for a key is used.
+
+Note that indentation is an important part of specifying relationships using YAML. Things that are indented are nested “inside” things that are one level higher. So in the above example, platform: pushbullet
is a property of (nested inside) the notify
component.
+Getting the right indentation can be tricky if you’re not using an editor with a fixed width font. Tabs are not allowed to be used for indentation. Convention is to use 2 spaces for each level of indentation.
+
+Lines that start with # are comments and are ignored by the system.
+
+The next example shows an input_select component that uses a block collection for the options values.
+The other properties (like name) are specified using mappings. Note that the second line just has threat:
with no value on the same line. Here threat is the name of the input_select and the values for it are everything nested below it.
+
+
+
input_select:
+ threat:
+ name: Threat level
+
+ options:
+ - 0
+ - 1
+ - 2
+ - 3
+ initial: 0
+
+
+
+
+The following example shows nesting a collection of mappings in a mapping.
+In Home Assistant, this would create two sensors that each use the MQTT platform but have different values for their state_topic
(one of the properties used for MQTT sensors).
+
+
+
sensor:
+ - platform: mqtt
+ state_topic: sensor/topic
+ - platform: mqtt
+ state_topic: sensor2/topic
+
+
+
+
Setting up the basic info
By default Home Assistant will try to detect your location and will automatically select a temperature unit and time zone based on your location. You can overwrite this by adding the following information to your configuration.yaml
:
@@ -155,7 +216,7 @@ You will have to restart Home Assistant for changes in configuration.yaml<
Password protecting the web interface
-The first thing you want to add is a password for the web interface. Use your favourite text editor to open the file configuration.yaml
and add the following to the http
section:
+The first thing you will want to add is a password for the web interface. Use your favourite text editor to open configuration.yaml
and edit the http
section:
http:
diff --git a/getting-started/index.html b/getting-started/index.html
index 0280be63cc..19845d46b8 100644
--- a/getting-started/index.html
+++ b/getting-started/index.html
@@ -440,17 +440,17 @@ That’s it… you’re all set to go
If you run into any issues, please see the troubleshooting page. It contains solutions to many of the more commonly encountered issues.
-For additional help, in addition to this site, there are four sources:
+In addition to this site, check out these sources for additional help:
What’s next
-
If you want to have Home Assistant start on boot, autostart instructions can be found here.
+
If you want to have Home Assistant start on boot, autostart instructions can be found here.
To see what Home Assistant can do, launch demo mode: hass --demo-mode
or visit the demo page.
diff --git a/getting-started/troubleshooting-configuration/index.html b/getting-started/troubleshooting-configuration/index.html
index 2414865513..11974e4fea 100644
--- a/getting-started/troubleshooting-configuration/index.html
+++ b/getting-started/troubleshooting-configuration/index.html
@@ -121,53 +121,19 @@
Whenever a component or configuration option results in a warning, it will be stored in home-assistant.log
in the configuration directory. This file is reset on start of Home Assistant.
-
YAML
-
-
Home Assistant uses the YAML syntax for configuration. YAML can be confusing to start with but is really powerful in allowing you to express complex configurations.
-
-
The basics of YAML are block collections and mappings containing key-value pairs. Collections will have each item start with a -
while mappings will have the format key: value
. The last value for a key is used in case you specify a duplicate key.
-Note that the indentation is an important part of specifying relationships using YAML.
-
-
-
-- hello
-- how
-- are
-- you
-
-
-beer: ice cold
-beer: warm
-wine: room temperature
-water: cold
-
-
-device_tracker:
- platform: mqtt
-
-
-sensor:
- - platform: mqtt
- state_topic: sensor/topic
- - platform: mqtt
- state_topic: sensor2/topic
-
-
-
-
-
Indentation is used to specify which objects are nested under one another. Getting the right indentation can be tricky if you’re not using an editor with a fixed width font. Tabs are not allowed to be used for indentation.
-
-
-
My component does not show up
When a component does not show up, many different things can be the case. Before you try any of these steps, make sure to look at the home-assistant.log
file and see if there are any errors related to your component you are trying to set up.
Problems with the configuration
+
One of the most common problems with Home Assistant is an invalid configuration.yaml
file.
+
+
+
configuration.yaml
does not allow multiple sections to have the same name. If you want a specific platform to be loaded twice, append a number or string to the name or nest them using this style.
@@ -206,7 +172,7 @@ Note that the indentation is an important part of specifying relationships using
-
Contents of lights.yaml
:
+
Contents of lights.yaml
(notice it does not contain light:
):
- platform: hyperion
diff --git a/help/index.html b/help/index.html
index dcc34e0069..b47d7779b7 100644
--- a/help/index.html
+++ b/help/index.html
@@ -128,7 +128,7 @@
Bugs, Feature requests, and alike
-Have you found an issue in your Home Assistant installation? Please report it in one of the issue trackers. Reporting it there makes it easier to track than in the Mailing list and ensures that it gets fixed.
+Have you found an issue in your Home Assistant installation? Please report it in one of the issue trackers. Reporting it there makes it easy to track and ensures that it gets fixed.
- Issue tracker Home Assistant
diff --git a/sitemap.xml b/sitemap.xml
index ce54a876e2..1708ff825b 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1346,630 +1346,630 @@
https://home-assistant.io/components/alarm_control_panel.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/alarm_control_panel.manual.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/alarm_control_panel.mqtt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/arduino.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/automation.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/browser.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/camera.foscam.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/camera.generic.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/configurator.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/conversation.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_sun_light_trigger.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.actiontec.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.aruba.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.asuswrt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.ddwrt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.locative.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.luci.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.mqtt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.netgear.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.nmap_scanner.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.owntracks.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.snmp.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.thomson.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.tomato.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.tplink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/device_tracker.ubus.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/discovery.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/downloader.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/ecobee.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/group.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/history.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/ifttt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/ifttt.manything.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/introduction.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/isy994.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/keyboard.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.blinksticklight.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.hue.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.hyperion.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.limitlessled.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.rfxtrx.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.tellstick.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.vera.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/light.wink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/lock.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/lock.wink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/logbook.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.cast.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.denon.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.firetv.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.itunes.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.kodi.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.mpd.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.plex.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.sonos.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/media_player.squeezebox.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/modbus.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/mqtt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.file.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.instapush.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.nma.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.pushbullet.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.pushover.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.slack.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.smtp.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.syslog.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.telegram.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/notify.xmpp.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/rfxtrx.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/scene.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/script.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.arduino.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.arest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.bitcoin.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.command_sensor.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.cpuspeed.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.dht.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.ecobee.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.efergy.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.forecast.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.glances.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.modbus.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.mqtt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.mysensors.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.openweathermap.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.rest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.rfxtrx.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.rpi_gpio.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.sabnzbd.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.speedtest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.swiss_public_transport.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.systemmonitor.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.tellstick.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.temper.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.time_date.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.transmission.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.vera.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.wink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sensor.worldclock.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/shell_command.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/simple_alarm.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/sun.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.arduino.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.arest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.command_switch.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.edimax.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.hikvision.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.modbus.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.mqtt.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.pulseaudio_loopback.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.rest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.rfxtrx.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.rpi_gpio.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.tellstick.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.transmission.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.vera.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.wemo.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/switch.wink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/tellstick.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/thermostat.ecobee.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/thermostat.heat_control.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/thermostat.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/thermostat.nest.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/thermostat.radiotherm.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/vera.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/verisure.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/wink.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/zone.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/components/zwave.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/demo/frontend.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/demo/index.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/add_new_platform.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/api.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/architecture.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/creating_components.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/credits.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/frontend.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/python_api.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/rest_api.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/developers/website.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/android.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/automation.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/autostart.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/configuration.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/devices.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/presence-detection.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/templating.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/troubleshooting-configuration.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/getting-started/troubleshooting.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00
https://home-assistant.io/static/mdi-demo.html
- 2016-04-08T20:37:49+00:00
+ 2016-04-09T06:04:36+00:00