forked from SzczepanLeon/wmbus-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_multical21.h
33 lines (26 loc) · 913 Bytes
/
driver_multical21.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
/*
Based on: https://github.com/wmbusmeters/wmbusmeters/blob/master/src/driver_multical21.cc
Copyright (C) 2017-2022 Fredrik Öhrström (gpl-3.0-or-later)
*/
#pragma once
#include "driver.h"
#include <vector>
#include <string>
struct Multical21: Driver
{
Multical21(std::string key = "") : Driver(std::string("multical21"), 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_water_m3", this->get_0413(telegram));
add_to_map(ret_val, "target_water_m3", this->get_4413(telegram));
// add_to_map(ret_val, "flow_temperature_c", this->get_615B(telegram));
// add_to_map(ret_val, "external_temperature_c", this->get_6167(telegram));
if (ret_val.size() > 0) {
return ret_val;
}
else {
return {};
}
};
private:
};