Virtual assistant
Installer
Planning
Installer startup guide (read first)
Global planning of a Climkit site
Process for setting up a Climkit site
Plan the connection of the Climkit Gateway and network connectivity
Schedule the electricity management
Plan the management of electric vehicle charging stations
Schedule the management of heating costs, water, and ancillary costs
Plan collective laundry management
Plan to manage eBike charging
General terms and conditions of sale
Platform configuration
Request for an Installer account
Creation of a new site
Add the router (4G or LAN)
Adding the Climkit Gateway
Adding electricity meters
Save the Photovoltaic installation information
Save the battery info
Adding charging stations
Add the OCPP Remote Electric vehicle charging station
Add the 4-relay I/O module
Adding RFID readers
Adding heat and water meters
Installation and connection
Install the 4G Router
Install the LAN router
Installing the Climkit Gateway
Install the RS485-Ethernet converter
Install the M-Bus converter
Install the standard Ethernet switch
Install the PoE Ethernet switch
Install Wi-Fi Access points
Install the electricity meters
Install the charging stations
Install the heat and water meters
Install the RFID reader
Install the three-phase Relay meter
Installing the Shelly relay meter
Install the 4-relay I/O module
Verification and testing
Owner
Administrative setup
Getting started guide - administrative setup
Form - 1. Contact details
Form - 2. Solutions
Form - 3. Billing rates
Contract and documents to be completed
Online account for owners
Information flyers for consumers
Online Access, RFID badge and charging stations
FAQ and other information
Resident
Account and app
Electricity invoice
Electric vehicle charging station
Building laundry room
Electric vehicle charging (eBike)
Platform
Platform Access
Terminology
Site
Settings
Creation/editing of a note or an issue to be addressed
Close an issue to be processed
Site statuses
Add/Modify building(s)
The steps for setting up a site
Delete/deactivate a site
Add/Edit equipment
Edit the basic information of a site
Equipment
Add/modify a gateway
Add/modify a router
Add/modify an electricity meter
Bulk insert meters
Bulk assign meters to a gateway
Add/modify a distribution zone
Add/edit a charging station
Add/modify a thermal meter or water meter
Add/edit a DSO meter (FTP transfer)
Connect remotely to a Climkit gateway
Administration
Stakeholders
Management terms
View the site management conditions
Enabling/disabling a solution
Configuration of the operating method
Visualize the financial conditions
Creation/edition/addition of a financial condition
Deletion of a financial condition
Accounts
Create a consumer account
Create a contact
Visualize and download account invoices
Send Platform Access to a contact
Add/modify the postal billing address
Link an existing account to a site
Change the correspondence method
Rates and billing points
Creation/editing of a billing point
Registering a move (transfer)
Assignment of an account to a billing point
Add/modify the default charge advance payment of a billing point
View site billing rates
Editing a consumption tariff
Creation/editing of a consumption tariff
Creation/editing of a consumption tariff component
View fixed rates and subscriptions
Customize invoice line item labels/titles
View the Financial conditions billed to the billing points
RFID badges
Accounting
Tools
Meter inspection
Visualization
Expense statements
Introduction to the Expense statement generation tool
Create/edit an accounting period for expense statements
Modify the expense statements settings
Add/modify a general invoice for an expense statement
Edit the advance payments collected for an expense statement
Special feature of room heating and hot water production fees
Verify and download meter readings for the expense statement period
Make the cost allocation and generate the expense statements
Export individual consumptions for the expense statements period
API
- Categories
-
- Configuring heating and water meters (MBus)
Configuring heating and water meters (MBus)
Updated
by Nicolas Vodoz
1. Reading a Meter with its Secondary Address
Unlike electricity meters and other Modbus devices for which the gateway reads one specific data register at a time, MBus meters systematically return all their registers in a single packet called a telegram.
This telegram must then be parsed to keep only the values we are interested in, namely the meter index (the energy or volume consumed register visible on the meter dial).
The secondary address corresponds to the reversed serial number in pairs, followed by 8 consecutive "F" characters.
On the heating meter below, the serial number is 94158192, leading to the secondary address 92811594FFFFFFFF
To obtain the telegram, read the meter via the Configuration Gateway webserver under Meters > MBus > Read MBus Meter
By default, the baudrate is 2400.
If the meter is correctly connected to the Gateway, the raw telegram is received after a few seconds.
Telegram Analysis and Register Retrieval
On the first line in blue: the meter's serial number
In red, the meter index with desc:ENERGY and function:INST_VAL, value in Wh.
In yellow, other useful registers for heating meters.
In the example above, the meter index (in red) has the following DIB and VIB values:
DIB: 04
VIB: 06
2. Configure the Meter on the Online Portal
Configure the meter in the online portal to insert its secondary address and register positions.
Log in to the Climkit online portal (app.climkit.io), select the corresponding site. Under EQUIPMENT > Meters > Heat (or Cold Water or Hot Water), create the meters one by one by clicking the "+".
Edit the meter with the following settings:
Name: name according to the type, serial number, and assignment. For example: "CH - 94158192 - Apartment 203"Address: leave emptyGateway: Select the gateway to which the meters are connected. See under EQUIPMENT > Communication.Model:generic_mbusProtocol:mbusBaudrate:2400Mode: consumption
Under Additional settings, insert the "key-value" pairs:
secondary_ad for the secondary address: 92811594FFFFFFFF
reg for the registers: [{'unit': 'heat_energy_kwh', 'factor': 0.001, 'dib': '04', 'vib': '06'}]
For a cooling meter, use cold_energy_kwh and for a water meter vol_m3.
For a hot water meter, use hot_water.
For a cold water meter, use cold_water.
For the heating meter, here are the complete registers in yellow in the above telegram:
[
{'unit': 'heat_energy_kwh', 'factor': 0.001, 'dib': '04', 'vib': '06'},
{'unit': 'vol_m3', 'dib': '04', 'vib': '13'},
{'unit': 'power_kw', 'dib': '04', 'vib': '2B'},
{'unit': 'vol_flow_m3_h', 'dib': '04', 'vib': '3B'},
{'unit': 'flow_temp', 'dib': '02', 'vib': '5B'},
{'unit': 'return_temp', 'dib': '02', 'vib': '5F'},
{'unit': 'diff_temp', 'dib': '02', 'vib': '61'}
]
3. Verifying Configuration and Reading
Once the meter is created and saved on the portal and associated with the correct gateway, it appears on the gateway under Meters > Configured Meters.
Click READ to test the reading and the register values.
The registers can then be reused for creating meters of the same model on the site.