From 2857afee544f7e2e733094c1613f29b962b73d32 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Oct 2015 22:09:31 +0200 Subject: [PATCH] Add vera sensor page --- source/components/sensor.vera.markdown | 35 ++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 source/components/sensor.vera.markdown diff --git a/source/components/sensor.vera.markdown b/source/components/sensor.vera.markdown new file mode 100644 index 00000000000..9b2a5d2160e --- /dev/null +++ b/source/components/sensor.vera.markdown @@ -0,0 +1,35 @@ +--- +layout: page +title: "Vera sensors support" +description: "Instructions how to integrate Vera sensors into Home Assistant." +date: 2015-10-20 21:00 +sidebar: false +comments: false +sharing: true +footer: true +--- + + +This vera sensor platform allows you to get data from your [Vera](http://getvera.com/) sensors. + +To use your Vera sensor in your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +sensor: + platform: vera + vera_controller_url: http://YOUR_VERA_IP:3480/ + device_data: + 12: + name: My awesome sensor + exclude: true + 13: + name: Another sensor +``` + +Configuration variables: + +- **vera_controller_url** (*Required*): This is the base URL of your vera controller including the port number if not running on 80, eg. http://192.168.1.21:3480/ +- **device_data** array (*Optional*):This contains an array additional device information for your Vera devices. It is not required and if not specified all sensors configured in your Vera controller will be added with default values. You should use the id of your Vera device as the key for the device within `device_data`. + - **name** (*Optional*):This parameter allows you to override the name of your Vera device in the frontend, if not specified the value configured for the device in your Vera will be used. + - **exclude** (*Optional*): This parameter allows you to exclude the specified device, it should be set to "True" if you want this device excluded.