mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 22:06:50 +00:00
Add documentation for landisgyr_heat_meter (#23084)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
b857e7e5fc
commit
0d36257ad7
87
source/_integrations/landisgyr_heat_meter.markdown
Normal file
87
source/_integrations/landisgyr_heat_meter.markdown
Normal file
@ -0,0 +1,87 @@
|
||||
---
|
||||
title: Landis+Gyr Heat Meter
|
||||
description: Instructions on how to integrate your Landis+Gyr Heat Meter device into Home Assistant.
|
||||
ha_category:
|
||||
- Energy
|
||||
- Sensor
|
||||
ha_iot_class: Local Polling
|
||||
ha_config_flow: true
|
||||
ha_release: 2022.9
|
||||
ha_domain: landisgyr_heat_meter
|
||||
ha_codeowners:
|
||||
- '@vpathuis'
|
||||
ha_platforms:
|
||||
- sensor
|
||||
ha_integration_type: integration
|
||||
---
|
||||
|
||||
The Landis+Gyr Heat Meter integration for Home Assistant allows you to read the meter values from Ultraheat devices by Landis & Gyr. These devices are commonly used for district heating. The integration has been tested with the Landis & Gyr Ultraheat 50 (UH50), type LUGCUH50. Other models are likely to work as well.
|
||||
|
||||
The device is read through the optical interface. An (USB) IR reader is needed and connected to Home Assistant.
|
||||
|
||||

|
||||
|
||||
{% include integrations/config_flow.md %}
|
||||
|
||||
## Sensors
|
||||
|
||||
The integration will create the following sensors:
|
||||
|
||||
- Heat usage (MWh)
|
||||
- Volume usage (m3)
|
||||
|
||||
To be compatible with the Home Assistant energy units of measurement, heat usage is converted to MWh, from usage in GJ, which is supplied by the device, using a conversion factor: 1 GJ = 0.277778 MWh.
|
||||
|
||||
Further data that is read from the device is added as diagnostic entities:
|
||||
|
||||
- Heat usage measured in GJ, as is read from the device before conversion
|
||||
- Ownership number
|
||||
- Volume previous year (m3)
|
||||
- Heat previous year (MWh)
|
||||
- Error number
|
||||
- Device number
|
||||
- Measurement period minutes
|
||||
- Power max (kW)
|
||||
- Power max previous year (kW)
|
||||
- Flow rate max (m3ph)
|
||||
- Flow rate max previous year (m3ph)
|
||||
- Flow temperature max (°C)
|
||||
- Return temperature max (°C)
|
||||
- Flow temperature max previous year (°C)
|
||||
- Return temperature max previous year (°C)
|
||||
- Operating hours
|
||||
- Fault hours
|
||||
- Fault hours previous year
|
||||
- Yearly set day
|
||||
- Monthly set day
|
||||
- Meter date time
|
||||
- Measuring range (m3ph)
|
||||
- Settings and firmware
|
||||
- Flow hours
|
||||
|
||||
## Energy Dashboard
|
||||
|
||||
Either heat usage or volume usage can be used as "Gas" on the energy dashboard. If you want to supply a price per MWh, make sure to apply the conversion factor first.
|
||||
|
||||
## Polling the device
|
||||
|
||||
Polling is by default done only once per day (and once right after adding the integration). Every time the Heat Meter values are read, battery time of the device will (supposedly) go down by about 30 minutes.
|
||||
|
||||
For detailed control on polling and time of polling, consider disabling polling in the integration panel and poll manually. For instructions, see below.
|
||||
|
||||
### Polling manually (optional)
|
||||
|
||||
For detailed control on when the device is polled, disable the default polling for this integration and create an automation that will update one of the entities (the other entities will be updated as well)
|
||||
|
||||
If you're comfortable with YAML, this game could be used:
|
||||
|
||||
```yaml
|
||||
alias: "Heat Meter manual update"
|
||||
trigger:
|
||||
- platform: time
|
||||
at: "23:30:00"
|
||||
action:
|
||||
- service: homeassistant.update_entity
|
||||
target:
|
||||
entity_id: sensor.heat_meter_heat_usage_gj
|
||||
```
|
Binary file not shown.
After Width: | Height: | Size: 88 KiB |
Loading…
x
Reference in New Issue
Block a user