diff --git a/components/light.hue/index.html b/components/light.hue/index.html
index 940f617db9..a07ef667ad 100644
--- a/components/light.hue/index.html
+++ b/components/light.hue/index.html
@@ -159,7 +159,7 @@ sufficient to get values that you can test in the x10
light platform allows you to control your X10 based lights with Home Assistant.
-Requires Heyu x10 interface.
+Requires Heyu x10 and a CM11A interface; the CM17A “FireCracker” interface is not supported.
To enable those lights, add the following lines to your configuration.yaml
file:
diff --git a/components/sensor.miflora/index.html b/components/sensor.miflora/index.html
index 4937793519..88a137e138 100644
--- a/components/sensor.miflora/index.html
+++ b/components/sensor.miflora/index.html
@@ -107,6 +107,7 @@ conductivity. As only a single BLE device can be polled at the same time, the li
- light
- temperature
- conductivity
+ - battery
diff --git a/sitemap.xml b/sitemap.xml
index 8b3725b8ad..3c45450929 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2419,62 +2419,62 @@
https://home-assistant.io/demo/frontend.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/index.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-event.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-info.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-service.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-state.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-dev-template.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-history.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-iframe.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-logbook.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/demo/panels/ha-panel-map.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/googlef4f3693c209fe788.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/static/fonts/roboto/DESCRIPTION.en_us.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/static/fonts/robotomono/DESCRIPTION.en_us.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
https://home-assistant.io/static/mdi-demo.html
-2016-12-10T22:15:13+00:00
+2016-12-10T22:20:02+00:00
diff --git a/topics/splitting_configuration/index.html b/topics/splitting_configuration/index.html
index 7fdcb181e1..c1a5120777 100644
--- a/topics/splitting_configuration/index.html
+++ b/topics/splitting_configuration/index.html
@@ -144,7 +144,7 @@
broker: 127.0.0.1
-As with the core snippet, indentation makes a difference. The component headers (mqtt:
) should be fully left aligned (aka no indent), and the parameters (port:
) should be indented two (2) spaces.
+As with the core snippet, indentation makes a difference. The component headers (mqtt:
) should be fully left aligned (aka no indent), and the parameters (broker:
) should be indented two (2) spaces.
While some of these components can technically be moved to a separate file they are so small or “one off’s” where splitting them off is superfluous. Also, you’ll notice the # symbol (hash/pound). This represents a “comment” as far as the commands are interpreted. Put another way, any line prefixed with a #
will be ignored. This makes breaking up files for human readability really convenient, not to mention turning off features while leaving the entry intact. (Look at the zigbee:
entry above and the b entry further down)
diff --git a/topics/templating/index.html b/topics/templating/index.html
index 04ebfa56c2..203ac56503 100644
--- a/topics/templating/index.html
+++ b/topics/templating/index.html
@@ -120,13 +120,12 @@ The frontend has a template editor developer tool to help develop and debug temp
msg_who_is_home:
sequence:
- service: notify.notify
- data_template:
- message: >
- {% if is_state('device_tracker.paulus', 'home') %}
- Ha, Paulus is home!
- {% else %}
- Paulus is at {{ states('device_tracker.paulus') }}.
- {% endif %}
+ message: >
+ {% if is_state('device_tracker.paulus', 'home') %}
+ Ha, Paulus is home!
+ {% else %}
+ Paulus is at {{ states('device_tracker.paulus') }}.
+ {% endif %}