From 15b3653a0270cdb7307161e5000f9b4d88420e7f Mon Sep 17 00:00:00 2001 From: gigatexel <65073191+gigatexel@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:30:58 +0200 Subject: [PATCH] Update telegram_specifications.py --- dsmr_parser/telegram_specifications.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dsmr_parser/telegram_specifications.py b/dsmr_parser/telegram_specifications.py index c8f05a5..f14cef2 100644 --- a/dsmr_parser/telegram_specifications.py +++ b/dsmr_parser/telegram_specifications.py @@ -144,10 +144,18 @@ ALL = (V2_2, V3, V4, V5) BELGIUM_FLUVIUS = deepcopy(V5) BELGIUM_FLUVIUS['objects'].update({ - obis.BELGIUM_HOURLY_GAS_METER_READING: MBusParser( + obis.BELGIUM_5MIN_GAS_METER_READING: MBusParser( ValueParser(timestamp), ValueParser(Decimal) - ) + ), + obis.BELGIUM_MAX_POWER_PER_PHASE: MBusParser( + ValueParser(timestamp), + ValueParser(Decimal) + ), + obis.BELGIUM_MAX_CURRENT_PER_PHASE: MBusParser( + ValueParser(timestamp), + ValueParser(Decimal) + ), }) LUXEMBOURG_SMARTY = deepcopy(V5)