forked from SzczepanLeon/wmbus-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_hydrocalm3.h
executable file
·34 lines (27 loc) · 1018 Bytes
/
driver_hydrocalm3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Based on: https://github.com/wmbusmeters/wmbusmeters/blob/master/src/driver_hydrocalm3.cc
Copyright (C) 2017-2022 Fredrik Öhrström (gpl-3.0-or-later)
*/
#pragma once
#include "driver.h"
#include <vector>
#include <string>
struct Hydrocalm3: Driver
{
Hydrocalm3(std::string key = "") : Driver(std::string("hydrocalm3"), key) {};
virtual esphome::optional<std::map<std::string, double>> get_values(std::vector<unsigned char> &telegram) override {
std::map<std::string, double> ret_val{};
add_to_map(ret_val, "total_heating_kwh", this->get_0C0E(telegram));
add_to_map(ret_val, "total_heating_kwh", this->get_0C03(telegram));
add_to_map(ret_val, "total_heating_kwh", this->get_0C0A(telegram));
add_to_map(ret_val, "total_heating_kwh", this->get_0C09(telegram)); /* Hydrocal M4 kWh metering map value */
add_to_map(ret_val, "total_water_m3", this->get_0C13(telegram));
if (ret_val.size() > 0) {
return ret_val;
}
else {
return {};
}
};
private:
};