forked from SzczepanLeon/wmbus-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_vario451.h
executable file
·51 lines (41 loc) · 1.53 KB
/
driver_vario451.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
Based on: https://github.com/wmbusmeters/wmbusmeters/blob/master/src/driver_vario451.cc
Copyright (C) 2017-2022 Fredrik Öhrström (gpl-3.0-or-later)
*/
#pragma once
#include "driver.h"
#include <vector>
#include <string>
struct Vario451: Driver
{
Vario451(std::string key = "") : Driver(std::string("vario451"), 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->total_heating_kwh(telegram));
add_to_map(ret_val, "total_heating_gj", this->total_heating_gj(telegram));
if (ret_val.size() > 0) {
return ret_val;
}
else {
return {};
}
};
private:
esphome::optional<double> total_heating_kwh(std::vector<unsigned char> &telegram) {
// in kWh
double total_heating_in_kwh = get_total_heating_in_gj(telegram) * 277.777;
return esphome::make_optional(total_heating_in_kwh);
}
esphome::optional<double> total_heating_gj(std::vector<unsigned char> &telegram) {
// in GJ
return esphome::make_optional(get_total_heating_in_gj(telegram));
}
double get_total_heating_in_gj(const std::vector<unsigned char> &telegram) const {
double usage = 0;
size_t i = 11;
usage = ((((uint32_t)telegram[i+4] << 8) + (uint32_t)telegram[i+3]) / 1000.0) +
((((uint32_t)telegram[i+8] << 8) + (uint32_t)telegram[i+7]) / 1000.0);
ESP_LOGVV(TAG, "Found total_heating with '%f'", usage);
return usage;
};
};