m-bus-parser 0.1.0

A library for parsing M-Bus frames
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
#[cfg(feature = "std")]
pub struct ManufacturerInfo {
    pub name: &'static str,
    pub website: &'static str,
    pub description: &'static str,
}

/// Look up a 3-letter M-Bus manufacturer code (FLAG/DLMS registered).
/// Returns `None` for unknown codes.
#[cfg(feature = "std")]
#[must_use]
pub fn lookup_manufacturer(code: &str) -> Option<ManufacturerInfo> {
    match code {
        "ABB" => Some(ManufacturerInfo {
            name: "ABB AB",
            website: "abb.com",
            description: "Power and automation technologies (Sweden)",
        }),
        "ACE" => Some(ManufacturerInfo {
            name: "Actaris Electricity",
            website: "itron.com",
            description: "Electricity metering (acquired by Itron)",
        }),
        "ACG" => Some(ManufacturerInfo {
            name: "Actaris Gas",
            website: "itron.com",
            description: "Gas metering (acquired by Itron)",
        }),
        "ACW" => Some(ManufacturerInfo {
            name: "Actaris Water & Heat",
            website: "itron.com",
            description: "Water and heat metering (acquired by Itron)",
        }),
        "AEG" => Some(ManufacturerInfo {
            name: "AEG",
            website: "aeg.com",
            description: "Electrical engineering (Germany)",
        }),
        "AEL" => Some(ManufacturerInfo {
            name: "Kohler",
            website: "",
            description: "Metering solutions (Turkey)",
        }),
        "AEM" => Some(ManufacturerInfo {
            name: "S.C. AEM S.A.",
            website: "",
            description: "Metering solutions (Romania)",
        }),
        "AMP" => Some(ManufacturerInfo {
            name: "Ampy Automation Digilog Ltd",
            website: "",
            description: "Electricity metering (UK)",
        }),
        "AMT" => Some(ManufacturerInfo {
            name: "Aquametro",
            website: "aquametro.com",
            description: "Water and heat metering (Switzerland)",
        }),
        "APS" => Some(ManufacturerInfo {
            name: "Apsis Kontrol Sistemleri",
            website: "apsis.com.tr",
            description: "Control systems (Turkey)",
        }),
        "BEC" => Some(ManufacturerInfo {
            name: "Berg Energiekontrollsysteme GmbH",
            website: "berg-energie.de",
            description: "Energy monitoring systems (Germany)",
        }),
        "BER" => Some(ManufacturerInfo {
            name: "Bernina Electronic AG",
            website: "",
            description: "Electronic metering",
        }),
        "BSE" => Some(ManufacturerInfo {
            name: "Basari Elektronik A.S.",
            website: "basari.com.tr",
            description: "Electronic metering (Turkey)",
        }),
        "BST" => Some(ManufacturerInfo {
            name: "BESTAS Elektronik Optik",
            website: "bestas.com.tr",
            description: "Electronic metering (Turkey)",
        }),
        "CBI" => Some(ManufacturerInfo {
            name: "Circuit Breaker Industries",
            website: "cbi.co.za",
            description: "Electrical metering (South Africa)",
        }),
        "CLO" => Some(ManufacturerInfo {
            name: "Clorius Raab Karcher Energie Service A/S",
            website: "",
            description: "Heat metering",
        }),
        "CON" => Some(ManufacturerInfo {
            name: "Conlog",
            website: "",
            description: "Prepayment metering solutions",
        }),
        "CZM" => Some(ManufacturerInfo {
            name: "Cazzaniga S.p.A.",
            website: "",
            description: "Water metering (Italy)",
        }),
        "DAN" => Some(ManufacturerInfo {
            name: "Danubia",
            website: "",
            description: "Metering solutions",
        }),
        "DFS" => Some(ManufacturerInfo {
            name: "Danfoss A/S",
            website: "danfoss.com",
            description: "Energy and climate solutions (Denmark)",
        }),
        "DME" => Some(ManufacturerInfo {
            name: "Diehl Metering",
            website: "diehl-metering.com",
            description: "Water and heat metering (Germany)",
        }),
        "DWZ" => Some(ManufacturerInfo {
            name: "Lorenz GmbH & Co. KG",
            website: "lorenz-meters.de",
            description: "Flow measurement (Germany)",
        }),
        "DZG" => Some(ManufacturerInfo {
            name: "Deutsche Zählergesellschaft",
            website: "dzg.de",
            description: "Electricity metering (Germany)",
        }),
        "EDM" => Some(ManufacturerInfo {
            name: "EDMI Pty. Ltd.",
            website: "edmi-meters.com",
            description: "Smart metering solutions (Australia)",
        }),
        "EFE" => Some(ManufacturerInfo {
            name: "Engelmann Sensor GmbH",
            website: "engelmann.de",
            description: "Heat and cooling energy meters (Germany)",
        }),
        "EKT" => Some(ManufacturerInfo {
            name: "PA KVANT J.S.",
            website: "",
            description: "Metering solutions (Russia)",
        }),
        "ELM" => Some(ManufacturerInfo {
            name: "Elektromed Elektronik Ltd",
            website: "elektromed.com.tr",
            description: "Electronic metering (Turkey)",
        }),
        "ELS" => Some(ManufacturerInfo {
            name: "Elster Group",
            website: "elster.com",
            description: "Gas, electricity and water metering",
        }),
        "ELV" => Some(ManufacturerInfo {
            name: "Elvaco AB",
            website: "elvaco.com",
            description: "Wireless M-Bus communication modules (Sweden)",
        }),
        "EMH" => Some(ManufacturerInfo {
            name: "EMH metering",
            website: "emh-metering.com",
            description: "Smart electricity meters (Germany)",
        }),
        "EMO" => Some(ManufacturerInfo {
            name: "Enermet",
            website: "enermet.de",
            description: "Energy metering (Germany)",
        }),
        "EMU" => Some(ManufacturerInfo {
            name: "EMU Elektronik AG",
            website: "emuag.ch",
            description: "Energy measurement (Switzerland)",
        }),
        "END" => Some(ManufacturerInfo {
            name: "ENDYS GmbH",
            website: "endys.de",
            description: "Metering systems (Germany)",
        }),
        "ENP" => Some(ManufacturerInfo {
            name: "Kiev Polytechnical Scientific Research",
            website: "",
            description: "Metering R&D (Ukraine)",
        }),
        "ENT" => Some(ManufacturerInfo {
            name: "ENTES Elektronik",
            website: "entes.com.tr",
            description: "Energy measurement (Turkey)",
        }),
        "ERL" => Some(ManufacturerInfo {
            name: "Erelsan Elektrik ve Elektronik",
            website: "",
            description: "Electrical metering (Turkey)",
        }),
        "ESM" => Some(ManufacturerInfo {
            name: "Starion Elektrik ve Elektronik",
            website: "",
            description: "Electrical metering (Turkey)",
        }),
        "ESY" => Some(ManufacturerInfo {
            name: "Easymeter",
            website: "easymeter.com",
            description: "Electricity metering (Germany)",
        }),
        "EUR" => Some(ManufacturerInfo {
            name: "Eurometers Ltd",
            website: "",
            description: "Utility metering",
        }),
        "EWT" => Some(ManufacturerInfo {
            name: "Elin Wasserwerkstechnik",
            website: "",
            description: "Water metering",
        }),
        "FED" => Some(ManufacturerInfo {
            name: "Federal Elektrik",
            website: "federal.com.tr",
            description: "Electrical equipment (Turkey)",
        }),
        "FML" => Some(ManufacturerInfo {
            name: "Siemens Measurements Ltd.",
            website: "siemens.com",
            description: "Metering (Siemens subsidiary)",
        }),
        "GAV" => Some(ManufacturerInfo {
            name: "Carlo Gavazzi",
            website: "gavazzi.com",
            description: "Energy monitoring and automation (Switzerland)",
        }),
        "GBJ" => Some(ManufacturerInfo {
            name: "Grundfos A/S",
            website: "grundfos.com",
            description: "Pump and flow solutions (Denmark)",
        }),
        "GEC" => Some(ManufacturerInfo {
            name: "GEC Meters Ltd.",
            website: "",
            description: "Electricity metering (UK)",
        }),
        "GMC" => Some(ManufacturerInfo {
            name: "GMC-I Gossen-Metrawatt",
            website: "gossenmetrawatt.com",
            description: "Measurement and energy technology (Germany)",
        }),
        "GSP" => Some(ManufacturerInfo {
            name: "Ingenieurbuero Gasperowicz",
            website: "m-bus.de",
            description: "M-Bus engineering (Germany)",
        }),
        "GTE" => Some(ManufacturerInfo {
            name: "Sensoco",
            website: "",
            description: "Metering solutions",
        }),
        "GWF" => Some(ManufacturerInfo {
            name: "GWF MessSysteme AG",
            website: "gwf.ch",
            description: "Gas and water measurement (Switzerland)",
        }),
        "HEG" => Some(ManufacturerInfo {
            name: "Hamburger Elektronik Gesellschaft",
            website: "",
            description: "Electronic metering (Germany)",
        }),
        "HEL" => Some(ManufacturerInfo {
            name: "Heliowatt",
            website: "",
            description: "Electricity metering",
        }),
        "HRZ" => Some(ManufacturerInfo {
            name: "HERZ Messtechnik GmbH",
            website: "herz-messtechnik.de",
            description: "Flow measurement (Germany)",
        }),
        "HTC" => Some(ManufacturerInfo {
            name: "Horstmann Timers and Controls Ltd.",
            website: "",
            description: "Timing and control (UK)",
        }),
        "HYD" => Some(ManufacturerInfo {
            name: "Hydrometer GmbH",
            website: "hydrometer.de",
            description: "Water metering (Germany)",
        }),
        "ICM" => Some(ManufacturerInfo {
            name: "Intracom",
            website: "intracom.gr",
            description: "Telecommunications and metering (Greece)",
        }),
        "IDE" => Some(ManufacturerInfo {
            name: "IMIT S.p.A.",
            website: "imit.it",
            description: "Control and measurement (Italy)",
        }),
        "INV" => Some(ManufacturerInfo {
            name: "Invensys Metering Systems AG",
            website: "",
            description: "Metering solutions",
        }),
        "ISK" => Some(ManufacturerInfo {
            name: "Iskraemeco",
            website: "iskraemeco.com",
            description: "Electricity and smart metering (Slovenia)",
        }),
        "IST" => Some(ManufacturerInfo {
            name: "ista SE",
            website: "ista.com",
            description: "Energy and water services (Germany)",
        }),
        "ITR" => Some(ManufacturerInfo {
            name: "Itron",
            website: "itron.com",
            description: "Smart metering and grid solutions (USA)",
        }),
        "ITW" => Some(ManufacturerInfo {
            name: "ista SE",
            website: "ista.com",
            description: "Energy services and submetering (Germany)",
        }),
        "IWK" => Some(ManufacturerInfo {
            name: "IWK Regler und Kompensatoren GmbH",
            website: "",
            description: "Control and compensation (Germany)",
        }),
        "JAN" => Some(ManufacturerInfo {
            name: "Janitza Electronics GmbH",
            website: "janitza.de",
            description: "Power quality and energy measurement (Germany)",
        }),
        "KAM" => Some(ManufacturerInfo {
            name: "Kamstrup A/S",
            website: "kamstrup.com",
            description: "Energy and water metering (Denmark)",
        }),
        "KHL" => Some(ManufacturerInfo {
            name: "Kohler",
            website: "",
            description: "Metering solutions (Turkey)",
        }),
        "KKE" => Some(ManufacturerInfo {
            name: "KK-Electronic A/S",
            website: "",
            description: "Electronic metering (Denmark)",
        }),
        "KNX" => Some(ManufacturerInfo {
            name: "KNX Association",
            website: "knx.org",
            description: "Building automation standard (Belgium)",
        }),
        "KRO" => Some(ManufacturerInfo {
            name: "Elster Kromschröder",
            website: "elster.com",
            description: "Gas metering and combustion (Germany)",
        }),
        "KST" => Some(ManufacturerInfo {
            name: "Kundo SystemTechnik GmbH",
            website: "kundo.de",
            description: "Heat cost allocators (Germany)",
        }),
        "LEM" => Some(ManufacturerInfo {
            name: "LEM HEME Ltd.",
            website: "lem.com",
            description: "Current and voltage transducers (UK)",
        }),
        "LGB" => Some(ManufacturerInfo {
            name: "Landis+Gyr UK",
            website: "landisgyr.com",
            description: "Energy management solutions (UK)",
        }),
        "LGD" => Some(ManufacturerInfo {
            name: "Landis+Gyr Germany",
            website: "landisgyr.com",
            description: "Energy management solutions (Germany)",
        }),
        "LGZ" => Some(ManufacturerInfo {
            name: "Landis+Gyr AG Zug",
            website: "landisgyr.com",
            description: "Energy management solutions (Switzerland)",
        }),
        "LHA" => Some(ManufacturerInfo {
            name: "Atlantic Meters",
            website: "atlantic-meters.com",
            description: "Metering solutions (South Africa)",
        }),
        "LML" => Some(ManufacturerInfo {
            name: "LUMEL S.A.",
            website: "lumel.com.pl",
            description: "Measurement and control (Poland)",
        }),
        "LSE" => Some(ManufacturerInfo {
            name: "Landis & Staefa Electronic",
            website: "siemens.com",
            description: "Building technologies and metering (Siemens)",
        }),
        "LSP" => Some(ManufacturerInfo {
            name: "Landis & Staefa Production",
            website: "siemens.com",
            description: "Building technologies and metering (Siemens)",
        }),
        "LSZ" => Some(ManufacturerInfo {
            name: "Siemens Building Technologies",
            website: "siemens.com",
            description: "Building automation and metering (Germany)",
        }),
        "LUG" => Some(ManufacturerInfo {
            name: "Landis+Gyr",
            website: "landisgyr.com",
            description: "Global energy management solutions",
        }),
        "MAD" => Some(ManufacturerInfo {
            name: "Maddalena S.r.l.",
            website: "maddalena.it",
            description: "Water metering (Italy)",
        }),
        "MEI" => Some(ManufacturerInfo {
            name: "H. Meinecke AG",
            website: "",
            description: "Water metering (now Invensys)",
        }),
        "MKS" => Some(ManufacturerInfo {
            name: "MAK-SAY Elektrik Elektronik",
            website: "",
            description: "Electrical metering (Turkey)",
        }),
        "MNS" => Some(ManufacturerInfo {
            name: "MANAS Elektronik",
            website: "manas.com.tr",
            description: "Electronic metering (Turkey)",
        }),
        "MPS" => Some(ManufacturerInfo {
            name: "Multiprocessor Systems Ltd",
            website: "mps.bg",
            description: "Metering systems (Bulgaria)",
        }),
        "MTC" => Some(ManufacturerInfo {
            name: "Metering Technology Corporation",
            website: "",
            description: "Metering solutions (USA)",
        }),
        "NIS" => Some(ManufacturerInfo {
            name: "Nisko Industries",
            website: "",
            description: "Metering solutions (Israel)",
        }),
        "NMS" => Some(ManufacturerInfo {
            name: "Nisko Advanced Metering Solutions",
            website: "",
            description: "Advanced metering (Israel)",
        }),
        "NRM" => Some(ManufacturerInfo {
            name: "Norm Elektronik",
            website: "",
            description: "Electronic metering (Turkey)",
        }),
        "NZR" => Some(ManufacturerInfo {
            name: "NZR GmbH",
            website: "nzr.de",
            description: "Energy metering systems (Germany)",
        }),
        "ONR" => Some(ManufacturerInfo {
            name: "ONUR Elektroteknik",
            website: "",
            description: "Electrical metering (Turkey)",
        }),
        "PAD" => Some(ManufacturerInfo {
            name: "PadMess GmbH",
            website: "padmess.de",
            description: "M-Bus data acquisition (Germany)",
        }),
        "PMG" => Some(ManufacturerInfo {
            name: "Spanner-Pollux GmbH",
            website: "",
            description: "Metering solutions (now Invensys)",
        }),
        "PRI" => Some(ManufacturerInfo {
            name: "Polymeters Response International Ltd.",
            website: "",
            description: "Utility metering (UK)",
        }),
        "RAM" => Some(ManufacturerInfo {
            name: "Rossweiner Armaturen und Messgeräte",
            website: "",
            description: "Metering instruments (Germany)",
        }),
        "RAS" => Some(ManufacturerInfo {
            name: "Hydrometer GmbH",
            website: "hydrometer.de",
            description: "Water metering (Germany)",
        }),
        "REL" => Some(ManufacturerInfo {
            name: "Relay GmbH",
            website: "relay.de",
            description: "Remote reading and M-Bus (Germany)",
        }),
        "RKE" => Some(ManufacturerInfo {
            name: "ista SE",
            website: "ista.com",
            description: "Energy services and submetering (Germany)",
        }),
        "SAP" => Some(ManufacturerInfo {
            name: "Sappel",
            website: "sappel.com",
            description: "Water metering (France)",
        }),
        "SBC" => Some(ManufacturerInfo {
            name: "Saia-Burgess Controls",
            website: "saia-pcd.com",
            description: "Building automation controllers (Switzerland)",
        }),
        "SCH" => Some(ManufacturerInfo {
            name: "Schnitzel GmbH",
            website: "",
            description: "Metering solutions (Germany)",
        }),
        "SEN" => Some(ManufacturerInfo {
            name: "Sensus",
            website: "sensus.com",
            description: "Water and gas metering",
        }),
        "SEO" => Some(ManufacturerInfo {
            name: "Sensoco",
            website: "",
            description: "Metering solutions",
        }),
        "SIE" => Some(ManufacturerInfo {
            name: "Siemens AG",
            website: "siemens.com",
            description: "Electrification, automation and digitalization (Germany)",
        }),
        "SLB" => Some(ManufacturerInfo {
            name: "Schlumberger Industries",
            website: "slb.com",
            description: "Energy and water metering",
        }),
        "SME" => Some(ManufacturerInfo {
            name: "Siame",
            website: "",
            description: "Metering solutions (Tunisia)",
        }),
        "SML" => Some(ManufacturerInfo {
            name: "Siemens Measurements Ltd.",
            website: "siemens.com",
            description: "Metering (Siemens subsidiary, UK)",
        }),
        "SOF" => Some(ManufacturerInfo {
            name: "softflow.de GmbH",
            website: "softflow.de",
            description: "M-Bus software and metering (Germany)",
        }),
        "SON" => Some(ManufacturerInfo {
            name: "Sontex SA",
            website: "sontex.ch",
            description: "Heat and water metering (Switzerland)",
        }),
        "SPL" => Some(ManufacturerInfo {
            name: "Sappel",
            website: "sappel.com",
            description: "Water metering (France)",
        }),
        "SPX" => Some(ManufacturerInfo {
            name: "Spanner & Pluss",
            website: "spanner-pluss.de",
            description: "Gas metering (Germany)",
        }),
        "SVM" => Some(ManufacturerInfo {
            name: "AB Svensk Värmemätning SVM",
            website: "",
            description: "Heat metering (Sweden)",
        }),
        "TCH" => Some(ManufacturerInfo {
            name: "Techem",
            website: "techem.com",
            description: "Heat cost allocators and submetering (Germany)",
        }),
        "TIP" => Some(ManufacturerInfo {
            name: "TIP Thüringer Industrie Produkte GmbH",
            website: "stromzaehler.de",
            description: "Electricity metering (Germany)",
        }),
        "UAG" => Some(ManufacturerInfo {
            name: "Uher",
            website: "",
            description: "Metering solutions",
        }),
        "UGI" => Some(ManufacturerInfo {
            name: "United Gas Industries",
            website: "",
            description: "Gas metering",
        }),
        "VES" => Some(ManufacturerInfo {
            name: "ista SE",
            website: "ista.com",
            description: "Energy services and submetering (Germany)",
        }),
        "VPI" => Some(ManufacturerInfo {
            name: "Van Putten Instruments B.V.",
            website: "",
            description: "Measurement instruments (Netherlands)",
        }),
        "WEP" => Some(ManufacturerInfo {
            name: "Wepsta",
            website: "",
            description: "Heat metering",
        }),
        "WMO" => Some(ManufacturerInfo {
            name: "Westermo Teleindustri AB",
            website: "westermo.se",
            description: "Industrial data communications (Sweden)",
        }),
        "WZG" => Some(ManufacturerInfo {
            name: "Modularis",
            website: "",
            description: "Metering solutions",
        }),
        "YTE" => Some(ManufacturerInfo {
            name: "Yuksek Teknoloji",
            website: "",
            description: "High technology metering (Turkey)",
        }),
        "ZAG" => Some(ManufacturerInfo {
            name: "Zellwerg Uster AG",
            website: "",
            description: "Metering solutions (Switzerland)",
        }),
        "ZAP" => Some(ManufacturerInfo {
            name: "Zaptronix",
            website: "",
            description: "Metering solutions",
        }),
        "ZIV" => Some(ManufacturerInfo {
            name: "ZIV Aplicaciones y Tecnologia S.A.",
            website: "ziv.es",
            description: "Smart grid and metering (Spain)",
        }),
        "ZRI" => Some(ManufacturerInfo {
            name: "ZENNER International GmbH & Co. KG",
            website: "zenner.com",
            description: "Water, heat and gas metering (Germany)",
        }),
        "ZRM" => Some(ManufacturerInfo {
            name: "Minol Messtechnik",
            website: "minol.de",
            description: "Heat cost allocators and submetering (Germany)",
        }),
        _ => None,
    }
}