ndokter / dsmr_parser

Library to parse Dutch Smart Meter Requirements (DSMR) telegrams.
MIT License
110 stars 64 forks source link

Add support for Iskra IE.5 (Belgian Smart Meter) - REW #152

Closed ljehu closed 2 months ago

ljehu commented 3 months ago

I have a Iskra IE.5 meter installed. Needed to modify the obis_references.py file

Line 106: From BELGIUM_VERSION_INFORMATION = r'^\d-\d:96.1.4.+?\r\n' BELGIUM_EQUIPMENT_IDENTIFIER = r'^\d-0:96.1.1.+?\r\n' To BELGIUM_VERSION_INFORMATION = r'^\d-\d:96.14.0.+?\r\n' BELGIUM_EQUIPMENT_IDENTIFIER = r'^\d-0:96.1.0.+?\r\n'

ljehu commented 3 months ago

Adding log with telegram sample:

2024-04-05 15:49:53.984 DEBUG (MainThread) [dsmr_parser.clients.protocol] got telegram: /ISk5\2MIE5E-200

1-0:0.0.0(00000000) 0-0:96.1.0(91318181) 0-0:1.0.0(240405154953) 1-0:1.8.1(000036.396kWh) 1-0:1.8.2(000044.115kWh) 1-0:2.8.1(000083.176kWh) 1-0:2.8.2(000008.863kWh) 0-0:96.14.0(0001) 1-0:1.7.0(00.000kW) 1-0:2.7.0(01.568kW) 1-0:21.7.0(00.000kW) 1-0:22.7.0(01.568kW) 1-0:32.7.0(236.8V) 1-0:31.7.0(006A) 0-0:96.3.10(1) 0-0:96.13.0() 0-1:96.1.1() !6690

dupondje commented 3 months ago

This is a new meter that gets installed in Belgium?

ljehu commented 3 months ago

As from the information I have found from my (very) local power infrastructure provider (REW), as from January 1st 2024, they are installing the Iskra IE.5 power meter. Don't know about the other providers in the region.

dupondje commented 3 months ago

Ah, Wallonie :) Feel free to create a PR!

ljehu commented 2 months ago

Created PR #153.