Update telegram_specifications.py

This commit is contained in:
gigatexel 2022-04-06 13:30:58 +02:00 committed by GitHub
parent 527730781c
commit 15b3653a02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -144,10 +144,18 @@ ALL = (V2_2, V3, V4, V5)
BELGIUM_FLUVIUS = deepcopy(V5) BELGIUM_FLUVIUS = deepcopy(V5)
BELGIUM_FLUVIUS['objects'].update({ BELGIUM_FLUVIUS['objects'].update({
obis.BELGIUM_HOURLY_GAS_METER_READING: MBusParser( obis.BELGIUM_5MIN_GAS_METER_READING: MBusParser(
ValueParser(timestamp), ValueParser(timestamp),
ValueParser(Decimal) 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) LUXEMBOURG_SMARTY = deepcopy(V5)