diff --git a/homeassistant/components/dsmr_reader/definitions.py b/homeassistant/components/dsmr_reader/definitions.py index b6740655434..0ec67bc97fd 100644 --- a/homeassistant/components/dsmr_reader/definitions.py +++ b/homeassistant/components/dsmr_reader/definitions.py @@ -1,6 +1,11 @@ """Definitions for DSMR Reader sensors added to MQTT.""" -from homeassistant.const import ENERGY_KILO_WATT_HOUR, VOLT, VOLUME_CUBIC_METERS +from homeassistant.const import ( + ELECTRICAL_CURRENT_AMPERE, + ENERGY_KILO_WATT_HOUR, + VOLT, + VOLUME_CUBIC_METERS, +) def dsmr_transform(value): @@ -98,6 +103,21 @@ DEFINITIONS = { "icon": "mdi:flash", "unit": VOLT, }, + "dsmr/reading/phase_power_current_l1": { + "name": "Phase power current L1", + "icon": "mdi:flash", + "unit": ELECTRICAL_CURRENT_AMPERE, + }, + "dsmr/reading/phase_power_current_l2": { + "name": "Phase power current L2", + "icon": "mdi:flash", + "unit": ELECTRICAL_CURRENT_AMPERE, + }, + "dsmr/reading/phase_power_current_l3": { + "name": "Phase power current L3", + "icon": "mdi:flash", + "unit": ELECTRICAL_CURRENT_AMPERE, + }, "dsmr/consumption/gas/delivered": { "name": "Gas usage", "icon": "mdi:fire",