2025-10-06 09:50:50 +02:00
2025-07-29 09:18:45 +02:00
2025-09-09 17:25:50 +02:00
2023-02-10 18:57:50 +01:00
2023-01-17 19:55:00 +01:00
2025-10-06 09:50:50 +02:00
2024-08-06 20:51:02 +02:00
2024-12-14 10:54:02 +01:00
2024-11-10 18:09:18 +01:00
2024-02-15 12:29:29 +01:00
2025-10-02 09:09:05 +02:00
2025-10-02 09:09:05 +02:00

AMS Reader

This code is designed to decode data from electric smart meters installed in many countries in Europe these days. The data is presented in a graphical web interface and can also send the data to a MQTT broker which makes it suitable for home automation project. Originally it was only designed to work with Norwegian meters, but has since been adapter to read any IEC-62056-7-5 or IEC-62056-21 compliant meters.

Later development have added Energy usage graph for both day and month, as well as future energy price. The code can run on any ESP8266 or ESP32 hardware which you can read more about in the WiKi. If you don't have the knowledge to set up a ESP device yourself, or you would like to support our work, please have a look at our shop at amsleser.no.

Go to the WiKi for information on how to get your own device! And find the latest prebuilt firmware file at the release section.

Building this project with PlatformIO

To build this project, you need PlatformIO installed.

It is recommended to use Visual Studio Code with the PlatformIO plugin for development.

Visual Studio Code

PlatformIO vscode plugin

For development purposes, copy the platformio-user.ini-example to platformio-user.ini and customize to your preference. The code will adapt to the platform and board set in your profile.

Licensing

Initially, this project began as a hobby, consuming countless hours of our spare time. However, the time required to support this project has expanded beyond the scope of a hobby. As a result, we established Utilitech, a company dedicated to maintaining the software and hardware for this project as part of our regular work.

To ensure the sustainability of our venture, we have opted to license our software under the [Fair Source License] (https://fair.io). This approach allows the software to remain free for personal use, while also ensuring full transparency of our codes inner workings. It also prevents competitors from exploiting our work without contributing to the maintenance of the code or providing technical support to end users.

For more information, please refer to our LICENSE file.

If your usage falls outside the scope of this license and you require a separate license, please contact us at post@utilitech.no for further details.

MQTT auto-provisioning defaults

If you want devices to connect to a known MQTT broker immediately after flashing, keep credentials in a local .env file rather than committing them:

  1. Copy .env.example to .env and fill in the MQTT values (host, port, username/password, client ID, topics, etc.).
  2. Commit the .env.example changes only—.env is ignored so secrets stay local.
  3. Build the firmware; the PlatformIO pre-build hook injects these values so the device boots with your broker settings.

Any field you leave empty will fall back to the defaults in lib/AmsConfiguration/include/MqttDefaults.h, meaning the web UI will prompt for credentials during first-time setup.

Description
ESP8266 and ESP32 compatible firmware to read, interpret and publish data to MQTT from smart electrical meters, both DLMS and DSMR is supported
Readme 85 MiB
Languages
C++ 76.4%
Svelte 16.4%
C 2.4%
JavaScript 2.3%
Shell 1%
Other 1.5%