Fix Sense docs (#8267)

* Remove platform documentation

* Minor changes
This commit is contained in:
Fabian Affolter 2019-01-24 23:30:14 +01:00 committed by GitHub
parent 008993a199
commit 2f3d4f8787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 73 deletions

View File

@ -27,24 +27,24 @@ sense:
password: CLIENT_SECRET
```
{% configuration %}
email:
description: The email associated with your Sense account/application.
required: true
type: string
password:
description: The password for your Sense account/application.
required: true
type: string
timeout:
description: Seconds for timeout of API requests.
required: false
type: positive_int
{% endconfiguration %}
Sensors are added for both usage and production with the following names:
- **Active Usage/Production**: Current active power usage/production in Watts. Updated every 60 seconds.
- **Daily/Weekly/Monthly Usage/Production**: Daily/Weekly/Monthly power usage/production in kWh. Updated every 5 minutes.
Binary sensors are created for each of the devices detected by your Sense monitor to show their power state.
{% configuration %}
email:
description: The email associated with your Sense account/application.
required: true
type: string
password:
description: The password for your Sense account/application.
required: true
type: string
timeout:
description: Seconds for timeout of API requests
required: false
type: positive_int
{% endconfiguration %}

View File

@ -1,58 +0,0 @@
---
layout: page
title: Sense
description: "Instructions on how to integrate Sense within Home Assistant."
date: 2018-01-11 13:50
sidebar: true
comments: false
sharing: true
footer: true
logo: sense.png
ha_category: Energy
ha_iot_class: "Cloud Polling"
ha_release: 0.65
---
Integrate your [Sense](https://sense.com) electricity meter information into Home Assistant.
## {% linkable_title Configuration %}
To enable this integration in your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
sense:
email: CLIENT_ID
password: CLIENT_SECRET
```
In addition to binary sensors for individual devices, two types of sensors will be created with the following names:
- **Active Usage/Production**: Current active power usage/production in Watts. Updated every 1 minute.
- **Daily/Weekly/Monthly/Yearly Usage/Production**: Daily power usage/production in kWh. Updated every 5 minutes.
{% configuration %}
email:
description: The email associated with your Sense account/application.
required: true
type: string
password:
description: The password for your Sense account/application.
required: true
type: string
timeout:
description: Timeout for the connection in seconds.
required: false
default: 5
type: integer
{% endconfiguration %}
Full example:
```yaml
# Example configuration.yaml entry
sense:
email: CLIENT_ID
password: CLIENT_SECRET
timeout: 5
```