From a510ff2f6824d61346811d96821b37172f30e735 Mon Sep 17 00:00:00 2001 From: Phi Dong Date: Tue, 2 Oct 2018 13:09:53 -0700 Subject: [PATCH] Update simplisafe configuration to new format (#6451) * Update simplisafe configuration to new format * :pencil2: Minor improvement to link in introduction --- .../alarm_control_panel.simplisafe.markdown | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/source/_components/alarm_control_panel.simplisafe.markdown b/source/_components/alarm_control_panel.simplisafe.markdown index ac5c14183a2..1dcad35d05e 100644 --- a/source/_components/alarm_control_panel.simplisafe.markdown +++ b/source/_components/alarm_control_panel.simplisafe.markdown @@ -12,7 +12,7 @@ ha_release: 0.24 ha_category: Alarm --- -The `simplisafe` platform enables the ability to control a SimpliSafe control panel. [simplisafe.com](http://simplisafe.com/). +The `simplisafe` platform enables the ability to control a [SimpliSafe](http://simplisafe.com/) control panel. To enable this, add the following lines to your `configuration.yaml`: @@ -24,10 +24,21 @@ alarm_control_panel: password: YOUR_PASSWORD ``` -Configuration variables: - -- **username** (*Required*): Username for the SimpliSafe account. -- **password** (*Required*): Password for SimpliSafe account. -- **name** (*Optional*): The name of the alarm. Default is the SimpliSafe alarm id. -- **code** (*Optional*): Specifies a code to enable or disable the alarm in the frontend. - +{% configuration %} +username: + description: Username for the SimpliSafe account. + required: true + type: string +password: + description: Password for SimpliSafe account. + required: true + type: string +name: + description: The name of the alarm. Default is the SimpliSafe alarm id. + required: false + type: string +code: + description: Specifies a code to enable or disable the alarm in the frontend. + required: false + type: string +{% endconfiguration %}