robinvdvleuten

robinvdvleuten

DSMR - Parse Dutch Smart Meter telegrams in Elixir

I’ve been working on a library for parsing DSMR (Dutch Smart Meter Requirements) telegrams and thought it might be useful for others working with smart energy meters.

What is it?

DSMR is the protocol used by smart meters in the Netherlands, Belgium, and Luxembourg. These meters broadcast “telegrams” - structured data packets with electricity usage, gas consumption, voltage measurements, and more. The library parses these telegrams into Elixir structs.

Quick example

telegram = """
/KFM5KAIFA-METER

1-3:0.2.8(42)
0-0:1.0.0(161113205757W)
1-0:1.8.1(001581.123*kWh)
1-0:2.8.1(000000.000*kWh)
1-0:1.7.0(02.027*kW)
0-1:24.2.1(161129200000W)(00981.443*m3)
!6796
"""

{:ok, result} = DSMR.parse(telegram)

result.electricity_delivered_1
#=> %DSMR.Measurement{value: Decimal.new("1581.123"), unit: "kWh"}

result.electricity_currently_delivered
#=> %DSMR.Measurement{value: Decimal.new("2.027"), unit: "kW"}

Features

  • Supports DSMR 4.x and 5.x protocols

  • Handles three-phase connections with per-phase measurements

  • Parses MBus devices (gas, water, heat meters)

  • Uses Decimal for high-precision values (optional)

  • Built with leex/yecc for reliable parsing

  • Gracefully handles unknown OBIS codes

Try it yourself

The repository includes runnable Livebook examples at https://github.com/mijnverbruik/dsmr/tree/main/examples:

  • Connect to a DSMR meter: Full GenServer implementation that connects via TCP and visualizes real-time usage

  • Run your own “dummy” smart meter: Simulate a meter for testing without hardware

Links

The library is still relatively new, so feedback and contributions are welcome. Let me know if you run into any issues or have ideas for improvements!

Where Next?

Trending in Announcing Top

bluzky
You may know https://ui.shadcn.com/, a UI component library for React. I really love it’s design style and components. I’ve built some co...
385 14863 120
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
shahryarjb
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly. One of i...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
zachdaniel
Introducing AshStorage! Attachment and file management that slots directly into your resources :smiling_face_with_sunglasses: I had hope...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement