Git Product home page Git Product logo

esphome_multical402's Introduction

Kamstrup Multical 602/402 & 403 for ESPHome

This fork contains following changes:

221023

Added:

  • Energy HiRes sensor for Multical 403 meters
  • Multical meter type defined in substitutions. Remember to alter to YOUR meter type!
  • Expose to- or hide sensor from HA depending on defined Multical meter type
  • energy_uom added in substitutions. Change default 860 to 0.86, if you use a meter with kWh as UOM for Energy registers

Revised:

  • Separate calculation of cooling average sensors base values

181023

Added:

  • Yearly Cooling average sensor + timestamp. Autoresets at January 1st, 00.00 hours

Revised:

  • Various logging messages

171023

Revised:

  • Registers returning zero values was previously ignored and not sensor updated (was treated as an error read). Now sensors will be updated with zero values
  • Register reads throttle is revised from 1- to 5 minutes = 30.000 millis
  • timeout value in kmp.h revised from 200 to 250 ms.

Added:

  • HiRes energy register handling added to kmp.h and multical402.h
  • multical402.yaml renamed to multical602.yaml
  • Revised multical602.yaml to calculate and publish a new high resolution energy sensor
  • Tested and working on a Multical 602 device

Introduction

This is a custom component for esphome that can read values from a Kamstrup Multical 402 meter. This meter type is used for district heating for the most.

The code is combined and adapted from other sources, see Sources & Inspiration below.

The meter is using KMP (Kamstrup Meter Protocol) for communication which is also used in power meters, but the code in this repository is written to read specific register values.

Optical Reader

The Multical 402 meter is equipped with an optical communication port. In order to communicate with the meter an Optical Reader is needed.

These are typically equipped with an USB port and are rather expensive, but for this project we only need a simple circuit that can be controlled by the ESP chip.

Options:

However, I don't think it's feasible making your own. The one from ebay is really cheap (18 EUR), but if you have a 3D printer already you can get the pcb and magnet for only 11 EUR.

Configuration

Update the multical402.yaml file as follows.

Board

In my case I'm using a Weemos D1 mini clone, but make sure to specify the right board here. Get more info here.

esphome:
  board: d1_mini    <-- Set the right board here
  ...

Wifi

Specify wifi credentials.

wifi:
  ssid: INSERT_WIFI_SSID
  password: INSERT_WIFI_PASSWORD

UART

The optical reader has 2 connections (besides VCC and GND). Specify them here:

uart:
  - id: uart_bus
    rx_pin: D1      <-- Set RX pin
    tx_pin: D2      <-- Set TX pin
    ...

Update interval

The code will run every 10 seconds. This can be changed here:

custom_component:
  - lambda: |-
      auto multical402 = new Multical402(
        10000,      <-- Specify update interval in milliseconds
        ...

Sensors

Currently the code is hardcoded to read the following register values:

  • Energy (Wh)
  • Power (W)
  • Temperature In (°C)
  • Temperature Out (°C)
  • Temperature Diff (°C)
  • Flow (l/h)
  • Volume (m3)

The code (kmp.h) can be changed to read other registers, but that is outside the scope of this readme.

Unit of Measurement

Make sure to specify the unit of measurement on the sensors to match the value from the meter (eg. Wh vs kWh vs MWh).

sensors:
- name: 'Energy'
    ...
    unit_of_measurement: MWh  <-- specify unit of measurement here
    ...

Troubleshooting

In case no values are being read and the log shows something like this:

[21:04:37][D][Multical402:048]: Start update
[21:04:37][W][Multical402:163]: Timed out listening for data
[21:04:37][W][Multical402:163]: Timed out listening for data
[21:04:38][W][Multical402:163]: Timed out listening for data
[21:04:38][W][Multical402:163]: Timed out listening for data
[21:04:38][W][Multical402:163]: Timed out listening for data
[21:04:39][W][Multical402:163]: Timed out listening for data
[21:04:39][W][Multical402:163]: Timed out listening for data
[21:04:39][D][Multical402:078]: End update

Check the following:

  • Check the IR LED on the optical reader; use a mobile phone and use the camera, the IR LED should blink every 10 seconds (or other if the update interval has been changed). If this isn't the case, check the UART pins and the wiring.
  • Press the "play" button on the meter to enable the IR Port. The meter will turn off the optical port after 30min of inactivity on either buttons and optical port.
  • Make sure the optical reader is positioned the right way; turn it 180° to flip the position of the IR sensor.

Sources & Inspiration

Protocol Description

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.