From 5599676173c072fb08b3c123c498894acc090c37 Mon Sep 17 00:00:00 2001 From: Greg Dowling Date: Sat, 26 Mar 2016 23:05:35 +0000 Subject: [PATCH] Update to refer to Hub docs --- source/_components/sensor.vera.markdown | 27 ++++--------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/source/_components/sensor.vera.markdown b/source/_components/sensor.vera.markdown index eb634bf280a..da1c1124d17 100644 --- a/source/_components/sensor.vera.markdown +++ b/source/_components/sensor.vera.markdown @@ -9,29 +9,10 @@ sharing: true footer: true logo: vera.png ha_category: Sensor +ha_iot_class: "Local Push" --- +The `vera` platform allows you to get data from your [Vera](http://getvera.com/) sensors from within Home Assistant. + +They will be automatically discovered if the vera component is loaded. -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.