From fa37be99e1aa61a8036d335f17d4fb81bbb20409 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 9 Sep 2015 09:53:52 +0200 Subject: [PATCH] Add variables description --- source/components/verisure.markdown | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/source/components/verisure.markdown b/source/components/verisure.markdown index e8962b91040..c5c3524d20e 100644 --- a/source/components/verisure.markdown +++ b/source/components/verisure.markdown @@ -19,15 +19,25 @@ We support: * Reading from thermometers and hygrometers integrated in various devices * Reading alarm status -Username and password are required. Other variables are optional and allow you to disable certain devices. +To integrate Verisure with Home Assistant, add the following section to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry verisure: - username: user@example.com - password: password + username: USERNAME + password: PASSWORD alarm: 1 hygrometers: 0 smartplugs: 1 thermometers: 0 ``` + +Configuration variables: + +- **username** (*Required*): The username to Verisure mypages. +- **password** (*Required*): The password to Verisure mypages. +- **alarm** (*Optional*): Set to 1 to show alarm, 0 to disable. Default 1. +- **hygrometers** (*Optional*): Set to 1 to show hygrometers, 0 to disable. Default 1. +- **smartplugs** (*Optional*): Set to 1 to show smartplugs, 0 to disable. Default 1. +- **thermometers** (*Optional*): Set to 1 to show thermometers, 0 to disable. Default 1. +