Component that records all events and state changes and feeds the data to
+a graphite installation.
+Example configuration:
+
+
+
# Example configuration.yaml entry
+graphite:
+ host: foobar
+ port: 2003
+ prefix: ha
+
+
+
+
+
All config elements are optional, and assumed to be on localhost at the
+default port if not specified. Prefix is the metric prefix in graphite,
+and defaults to ‘ha’.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/group/index.html b/components/group/index.html
index ec5a31f221..c118a4ffdb 100644
--- a/components/group/index.html
+++ b/components/group/index.html
@@ -120,6 +120,13 @@
# Example configuration.yaml entrygroup:
+ # If you name an entry default_view it will REPLACE the contents of the "Home" tab
+ default_view:
+ view: yes
+ entities:
+ - group.awesome_people
+ - group.climate
+
kitchen:
name: Kitchenentities:
diff --git a/components/history/index.html b/components/history/index.html
index 1ff0dba92c..128c54bd26 100644
--- a/components/history/index.html
+++ b/components/history/index.html
@@ -189,6 +189,9 @@ datetime.fromtimestamp(1422830502)
diff --git a/components/index.html b/components/index.html
index 7a6d902a89..7b7d142224 100644
--- a/components/index.html
+++ b/components/index.html
@@ -786,6 +786,16 @@ Support for these components is provided by the Home Assistant community.
+
+
diff --git a/components/media_player.firetv/index.html b/components/media_player.firetv/index.html
index 7762189161..6a016f74a3 100644
--- a/components/media_player.firetv/index.html
+++ b/components/media_player.firetv/index.html
@@ -220,6 +220,9 @@ Note that python-firetv has support for multiple Amazon Fire TV devices. If you
diff --git a/components/media_player.squeezebox/index.html b/components/media_player.squeezebox/index.html
index 2398c68d12..02d130dafe 100644
--- a/components/media_player.squeezebox/index.html
+++ b/components/media_player.squeezebox/index.html
@@ -195,6 +195,9 @@ This lets you control Squeezebox hardware like the Classic, Transporter, Duet, B
diff --git a/components/mqtt/index.html b/components/mqtt/index.html
index cefe5f448e..64e6c58098 100644
--- a/components/mqtt/index.html
+++ b/components/mqtt/index.html
@@ -232,9 +232,31 @@ Home Assistant will automatically load the correct certificate if you connect to
The MQTT component will register the service publish which allows publishing messages to MQTT topics. There are two ways of specifiying your payload. You can either use payload to hard-code a payload or use payload_template to specify a template that will be rendered to generate the payload.
For debugging purposes mosquitto is shipping commandline tools to send and recieve MQTT messages. For sending test messages to a broker running on localhost:
TellStick Switch
diff --git a/components/switch.command_switch/index.html b/components/switch.command_switch/index.html
index 663c9de9e6..38977da843 100644
--- a/components/switch.command_switch/index.html
+++ b/components/switch.command_switch/index.html
@@ -256,7 +256,7 @@ This switch will shutdown your host immediately, there will be no confirmation.
Raspberry PI GPIO Switch
TellStick Switch
diff --git a/components/switch.modbus/index.html b/components/switch.modbus/index.html
index 7db45cf169..87a24b3cb2 100644
--- a/components/switch.modbus/index.html
+++ b/components/switch.modbus/index.html
@@ -234,7 +234,7 @@ Each named bit will create a switch.
Raspberry PI GPIO Switch
TellStick Switch
diff --git a/components/switch.rest/index.html b/components/switch.rest/index.html
index 7799db369e..c3ca1cac32 100644
--- a/components/switch.rest/index.html
+++ b/components/switch.rest/index.html
@@ -210,7 +210,7 @@ Make sure that the URL matches exactly your endpoint or resource.
Raspberry PI GPIO Switch
TellStick Switch
diff --git a/components/switch.rpi_gpio/index.html b/components/switch.rpi_gpio/index.html
index f51c37c0f7..b176e0d2d9 100644
--- a/components/switch.rpi_gpio/index.html
+++ b/components/switch.rpi_gpio/index.html
@@ -208,7 +208,7 @@ If you are not running Raspbian Jessie, you will need to run Home Assistant as r
Raspberry PI GPIO Switch
To allow Home Assistant to talk to your Z-Wave USB stick you will have to compile Python Open Z-Wave. This can be done using this script. (The Home Assistant docker image has support for Z-Wave built-in)
diff --git a/cookbook/configuration_yaml_by_carlo_costanzo/index.html b/cookbook/configuration_yaml_by_carlo_costanzo/index.html
index 14d858282c..3ff97a8d3e 100644
--- a/cookbook/configuration_yaml_by_carlo_costanzo/index.html
+++ b/cookbook/configuration_yaml_by_carlo_costanzo/index.html
@@ -132,13 +132,16 @@
Back to the cookbook
diff --git a/cookbook/configuration_yaml_by_happyleavesaoc/index.html b/cookbook/configuration_yaml_by_happyleavesaoc/index.html
index 40500d6555..aa6e34572d 100644
--- a/cookbook/configuration_yaml_by_happyleavesaoc/index.html
+++ b/cookbook/configuration_yaml_by_happyleavesaoc/index.html
@@ -132,14 +132,17 @@
Back to the cookbook
Platforms that require polling will be polled in an interval specified by the main component. For example a light will check every 30 seconds for a changed state. It is possible to overwrite this scan interval for any platform that is being polled by specifying a scan_interval config key. In the example below we setup the Philips Hue lights but tell Home Assistant to poll the devices every 10 seconds instead of the default 30 seconds.
+
+
+
# Example configuration.yaml entry to poll Hue lights every 10 seconds.
+light:
+ platform: hue
+ scan_interval: 10
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/cookbook/dim_lights_when_playing_media/index.html b/cookbook/dim_lights_when_playing_media/index.html
index ede3a29f3e..56ed57d86d 100644
--- a/cookbook/dim_lights_when_playing_media/index.html
+++ b/cookbook/dim_lights_when_playing_media/index.html
@@ -204,20 +204,17 @@