From aa3af8e23230536f4274eff82da804320e1e17e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Klomp?= Date: Fri, 16 Jul 2021 09:18:59 +0200 Subject: [PATCH] Add name to Utility Meter configuration options (#18525) --- source/_integrations/utility_meter.markdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/_integrations/utility_meter.markdown b/source/_integrations/utility_meter.markdown index f81bc72b37b..8cd2719f2d2 100644 --- a/source/_integrations/utility_meter.markdown +++ b/source/_integrations/utility_meter.markdown @@ -40,6 +40,10 @@ source: description: The entity ID of the sensor providing utility readings (energy, water, gas, heating). required: true type: string +name: + description: The friendly name to use in the GUI. + required: false + type: string cycle: description: How often to reset the counter. Valid values are `quarter-hourly`, `hourly`, `daily`, `weekly`, `monthly`, `bimonthly`, `quarterly` and `yearly`. Cycle value `bimonthly` will reset the counter once in two months. required: true @@ -127,12 +131,14 @@ Sensor `sensor.daily_energy_peak`, `sensor.daily_energy_offpeak`, `sensor.monthl utility_meter: daily_energy: source: sensor.energy + name: Daily Energy cycle: daily tariffs: - peak - offpeak monthly_energy: source: sensor.energy + name: Monthly Energy cycle: monthly tariffs: - peak @@ -178,21 +184,27 @@ So, tracking daily and monthly consumption for each sensor, will require setting utility_meter: daily_energy_offpeak: source: sensor.energy_consumption_tarif_1 + name: Daily Energy (Offpeak) cycle: daily daily_energy_peak: source: sensor.energy_consumption_tarif_2 + name: Daily Energy (Peak) cycle: daily daily_gas: source: sensor.gas_consumption + name: Daily Gas cycle: daily monthly_energy_offpeak: source: sensor.energy_consumption_tarif_1 + name: Monthly Energy (Offpeak) cycle: monthly monthly_energy_peak: source: sensor.energy_consumption_tarif_2 + name: Monthly Energy (Peak) cycle: monthly monthly_gas: source: sensor.gas_consumption + name: Monthly Gas cycle: monthly ```