Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

IEC 62056 21 Meter Binding

kreutpet edited this page May 23, 2014 · 2 revisions

Documentation of the IEC 62056-21 meter binding bundle

    1. Introduction
This binding is used to communicate to metering devices supporting serial communication according IEC 62056-21 mode C master. It can be used to read metering data from slaves such as gas, water, heat, or electricity meters. For further information read Wiki page of [IEC_62056-21](http://en.wikipedia.org/wiki/IEC_62056#IEC_62056-21).

Information receive from the meter device are structured according IEC 62056-6-1:2013, Object identification system (OBIS). For further information read Wiki page of [OBIS](http://de.wikipedia.org/wiki/OBIS-Kennzahlen).

For installation of the binding, please see Wiki page [Bindings](https://github.com/openhab/openhab/wiki/Bindings).

    1. IEC 62056 - 21 Meter Binding Configuration
      1. openhab.cfg
The openhab.cfg file (in the folder '${openhab_home}/configurations') contain following config parameters to configure the binding. The configuration allows the definition of multiple meter devices.
    # Delay of baud rate change in ms. Default is 0. USB to serial converters often require a delay of up to 250ms
    # default is 0ms
    iec6205621meter:<meter-id1>.baudRateChangeDelay=0
    
    # Enable handling of echos caused by some optical tranceivers
    # default is true
    iec6205621meter:<meter-id1>.echoHandling=true
    
    # Perform a module status query every x seconds (optional, defaults to 600 (10 minutes)).
    iec6205621meter:refresh=60

NOTE: the `<meter-id1></meter-id1>` will be used in both the binding item configs and the action calls to defined which of your meter devices is connected to the item.

    1. Generic Item Binding Configuration
      1. Item Binding Configuration
In order to bind an item to the data received from the meter device , you need to provide item configuration settings. The easiest way to do so is to add some binding information in your item file (in the folder configurations/items`). The syntax of the binding configuration strings accepted is the following: The syntax of an item configuration is shown in the following line in general:
    iec6205621meter="&lt;meter&#45;id&gt;&lt;/meter&#45;id&gt;:<OBIS>"

Where meter-id matches one of the ids defined in your openhab.cfg file.

If you do not know the available OBIS on your meter device you propably find them on the local HMI of you meter device. Please review you manual of the meter device or read the instruction of your utility. You can also start openhab in debug mode, the binding will then dump all available OBIS it receives from the meter device in the osgi console.

      1. Examples
Below is an example of represent the current energy counter tarif values as numeric items.
    /* IEC 62056-21 Meter data */
    Number Tarif_Period	"Chart Period"
    Number Tarif1 "High price tarif [%d]" (gEnergy) { iec6205621meter="meter1:1.8.1" }
    Number Tarif2 "Low price tarif [%d]" (gEnergy) { iec6205621meter="meter1:1.8.2" }
    Number ActualUsage "Actual usage [%.2f]" &lt;genergy&gt;&lt;/genergy&gt; () { iec6205621meter="meter1:16.7" }
      1. Rules
In order to calculate the daily accumulated energy consumption below item and script will allow you to present a chart in your sitemap. First create the necessary items:


Second add below script to your rules:

    rule "Energy chart"
    when
        Item Tarif1 changed or
        Item Tarif2 changed
    then

var Number tmp var Number stopTarif1 var Number stopTarif2 var Number startTarif1 var Number startTarif2

if (Tarif1.state instanceof DecimalType && Tarif2.state instanceof DecimalType) { stopTarif1 = Tarif1.maximumSince(now.toDateMidnight).state as DecimalType stopTarif2 = Tarif2.maximumSince(now.toDateMidnight).state as DecimalType

//Today

    	        tmp = stopTarif1 - startTarif1
    	        postUpdate(Tarif1Today, tmp)
    	
    	        tmp = stopTarif2 - startTarif2
    	        postUpdate(Tarif2Today, tmp)

} end

Third add below Frame to your sitemap:

Frame label="Energie" { Text item=Tarif1 { Frame { Text item=Tarif1 Text item=Tarif2 Chart item=gEnergieConsumption period=D refresh=600 Chart item=gEnergieConsumption period=W refresh=3600 } } }

      1. Tested Hardware
The binding has been successfully tested with below hardware configuration:
  • Landis & Gyr meter [ZMD120AR](http://www.landisgyr.ch/product/landisgyr-zmd120ar/) connected via [IR-Reader](http://wiki.volkszaehler.org/hardware/controllers/ir-schreib-lesekopf) from open hardware project in [volkszaehler](http://volkszaehler.org/)
  • Landis & Gyr meter connected the IR USB Head from Volkszaehler

Installation


User Interfaces


Community

(link to openHAB forum)

Development



Misc


Samples

A good source of inspiration and tips from users gathered over the years. Be aware that things may have changed since they were written and some examples might not work correctly.

Please update the wiki if you do come across any out of date information.

Use case examples

Collections of Rules on a single page

Single Rules

Scripts


Release Notes

Clone this wiki locally