mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Reflect changes in Sense configuration (#7558)
* Reflect changes in Sense configuration Configuration options changed after #17645, this updates the documentation to reflect those changes. * ✏️ Tweaks
This commit is contained in:
parent
319c902381
commit
0fc200df3a
@ -13,32 +13,23 @@ ha_iot_class: "Cloud Polling"
|
|||||||
ha_release: 0.65
|
ha_release: 0.65
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Integrate your [Sense](https://sense.com) electricity meter information into Home Assistant.
|
||||||
Integrate your [Sense](https://sense.com) meter information into Home Assistant.
|
|
||||||
|
|
||||||
## {% linkable_title Configuration %}
|
## {% linkable_title Configuration %}
|
||||||
|
|
||||||
To enable this sensor in your installation, add the following to your `configuration.yaml` file:
|
To enable this integration in your installation, add the following to your `configuration.yaml` file:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sense:
|
||||||
platform: sense
|
|
||||||
email: CLIENT_ID
|
email: CLIENT_ID
|
||||||
password: CLIENT_SECRET
|
password: CLIENT_SECRET
|
||||||
monitored_conditions:
|
|
||||||
- active_usage
|
|
||||||
- active_production
|
|
||||||
- daily_usage
|
|
||||||
- daily_production
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Two types of sensors can be monitored and will be created with the following names:
|
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 30 seconds.
|
- **Active Usage/Production**: Current active power usage/production in Watts. Updated every 1 minute.
|
||||||
- **Daily Usage/Production**: Daily power usage/production in kWh. Updated every 5 minutes.
|
- **Daily/Weekly/Monthly/Yearly Usage/Production**: Daily power usage/production in kWh. Updated every 5 minutes.
|
||||||
|
|
||||||
Weekly, Monthly and Yearly variants are also available.
|
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
email:
|
email:
|
||||||
@ -49,29 +40,19 @@ password:
|
|||||||
description: The password for your Sense account/application.
|
description: The password for your Sense account/application.
|
||||||
required: true
|
required: true
|
||||||
type: string
|
type: string
|
||||||
monitored_conditions:
|
timeout:
|
||||||
description: List of sensors to display in the front end.
|
description: Timeout for the connection in seconds.
|
||||||
required: true
|
required: false
|
||||||
type: list
|
default: 5
|
||||||
keys:
|
type: integer
|
||||||
active_usage:
|
|
||||||
description: The current power usage in W.
|
|
||||||
active_production:
|
|
||||||
description: The current solar production in W.
|
|
||||||
daily_usage:
|
|
||||||
description: Total power used for current day in kWh.
|
|
||||||
daily_production:
|
|
||||||
description: Total power produced for current day in kWh.
|
|
||||||
weekly_usage:
|
|
||||||
description: Total power used for current week in kWh.
|
|
||||||
weekly_production:
|
|
||||||
description: Total power produced for current week in kWh.
|
|
||||||
monthly_usage:
|
|
||||||
description: Total power used for current month in kWh.
|
|
||||||
monthly_production:
|
|
||||||
description: Total power produced for current month in kWh.
|
|
||||||
yearly_usage:
|
|
||||||
description: Total power used for current year in kWh.
|
|
||||||
yearly_production:
|
|
||||||
description: Total power produced for current year in kWh.
|
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
Full example:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
sense:
|
||||||
|
email: CLIENT_ID
|
||||||
|
password: CLIENT_SECRET
|
||||||
|
timeout: 5
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user