
* u-z integrations: apply sentence-style caps to categories * Apply suggestions from code review Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Add references to glossary terms * Update source/_integrations/universal.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Update source/_integrations/universal.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * linter: change vizio to VIZIO - as per product website https://www.vizio.com/en/smartcast * remove term refs from YAML * VIZIO: change spelling according to website - https://www.vizio.com/en/t * Update source/_integrations/vizio.markdown * Update source/_integrations/universal.markdown * Apply suggestions from code review Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Fix some more to sentence-style caps * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Update source/_integrations/unifiprotect.markdown Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> --------- Co-authored-by: Joakim Sørensen <joasoe@gmail.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
1.7 KiB
title, description, ha_category, ha_iot_class, ha_release, ha_domain, ha_platforms, ha_integration_type
title | description | ha_category | ha_iot_class | ha_release | ha_domain | ha_platforms | ha_integration_type | ||
---|---|---|---|---|---|---|---|---|---|
Volkszaehler | Instructions on how to integrate Volkszaehler sensors into Home Assistant. |
|
Local Polling | 0.78 | volkszaehler |
|
integration |
The Volkszaehler {% term integration %} is consuming the system information provided by the Volkszaehler API.
Configuration
To enable the Volkszaehler sensor, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
sensor:
- platform: volkszaehler
uuid: DEVICE_UUID
{% configuration %} uuid: description: The UUID of the device to track. required: true type: string host: description: The IP address of the host where Volkszaehler is running. required: false type: string default: localhost port: description: The port where Volkszaehler is listening. required: false type: integer default: 80 name: description: The prefix for the sensors. required: false type: string default: Volkszaehler monitored_conditions: description: Entries to monitor. required: false type: list default: average keys: average: description: The average power. consumption: description: The power consumption. max: description: The maximum power. min: description: The minimum power. {% endconfiguration %}
Full examples
# Example configuration.yaml entry
sensor:
- platform: volkszaehler
host: demo.volkszaehler.org
uuid: "57acbef0-88a9-11e4-934f-6b0f9ecd95a8"
monitored_conditions:
- average
- consumption
- min
- max