diff --git a/atom.xml b/atom.xml index 2cac221e9e..b1e428a049 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
To enable this platform, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
alarm_control_panel:
- platform: mqtt
- state_topic: "home/alarm"
- command_topic: "home/alarm/set"
+ - platform: mqtt
+ state_topic: "home/alarm"
+ command_topic: "home/alarm/set"
Configuration variables:
diff --git a/components/apiai/index.html b/components/apiai/index.html index 204e5331db..9c622c040c 100644 --- a/components/apiai/index.html +++ b/components/apiai/index.html @@ -88,16 +88,16 @@https://myhome.duckdns.org/api/apiai?api_password=HA_PASSWORD
https://myhome.duckdns.org/api/apiai?api_password=HA_PASSWORD
Take a look to “Integrations”, in the left menu, to configure third parties.
True
if Api.ai is returning the “Cannot connect to HA or it is taking to long” message, but then you will not be able to use values based on the result of the action. Defaults to False
.True
if Api.ai is returning the “Cannot connect to Home Assistant or it is taking to long” message, but then you will not be able to use values based on the result of the action. Defaults to False
.Download this zip and load it in your Api.ai agent (Settings -> Export and Import) for examples intents to use with this configuration:
diff --git a/components/binary_sensor.command_line/index.html b/components/binary_sensor.command_line/index.html index 490e5c2728..d84214ba01 100644 --- a/components/binary_sensor.command_line/index.html +++ b/components/binary_sensor.command_line/index.html @@ -81,7 +81,7 @@In this section you find some real life examples of how to use this sensor.
@@ -110,14 +110,15 @@An alternative solution could look like this:
binary_sensor:
- platform: command_line
- name: Printer
- command: ping -W 1 -c 1 192.168.1.10 > /dev/null 2>&1 && echo success || echo fail
- device_class: connectivity
- payload_on: "success"
- payload_off: "fail"
+ - platform: command_line
+ name: Printer
+ command: ping -W 1 -c 1 192.168.1.10 > /dev/null 2>&1 && echo success || echo fail
+ device_class: connectivity
+ payload_on: "success"
+ payload_off: "fail"
Consider to use the ping
sensor as an alternative to the samples above.