Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

35 lines
1021 B
Markdown

---
title: "Essent"
description: "Instructions on how to integrate Essent within Home Assistant."
logo: essent.png
ha_category:
- Energy
- Sensor
ha_release: 0.93
ha_iot_class: Cloud Polling
---
The `essent` platform uses [PyEssent](https://github.com/TheLastProject/PyEssent/) to communicate with the (undocumented) API of Dutch energy provider Essent. It provides sensors for each of your meters and tariffs, updated daily.
To add Essent to your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
sensor:
- platform: essent
username: YOUR_USERNAME
password: YOUR_PASSWORD
```
{% configuration %}
username:
required: true
description: Your username for [Mijn Essent](https://www.essent.nl/content/particulier/klantenservice/mijn_essent/).
type: string
password:
required: true
description: Your password for [Mijn Essent](https://www.essent.nl/content/particulier/klantenservice/mijn_essent/).
type: string
{% endconfiguration %}