forked from SzczepanLeon/wmbus-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_apatoreitn.h
executable file
·67 lines (52 loc) · 1.75 KB
/
driver_apatoreitn.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
Based on: https://github.com/wmbusmeters/wmbusmeters/blob/master/src/driver_apatoreitn.cc
Copyright (C) 2019-2022 Fredrik Öhrström (gpl-3.0-or-later)
*/
#pragma once
#include "driver.h"
#include <vector>
#include <string>
struct ApatorEITN: Driver
{
ApatorEITN(std::string key = "") : Driver(std::string("apatoreitn"), 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, "current_hca", this->get_current_hca(telegram));
add_to_map(ret_val, "previous_hca", this->get_previous_hca(telegram));
add_to_map(ret_val, "temp_room_avg_c", this->get_temp_room_avg_c(telegram));
if (ret_val.size() > 0) {
return ret_val;
}
else {
return {};
}
};
private:
esphome::optional<double> get_current_hca(std::vector<unsigned char> &telegram) {
esphome::optional<double> ret_val{};
size_t i = 10;
if (telegram[i] == 0xB6) {
i += telegram[i+1] + 2;
}
ret_val = (((uint32_t)telegram[i+9] << 8) + (uint32_t)telegram[i+8]);
return ret_val;
};
esphome::optional<double> get_previous_hca(std::vector<unsigned char> &telegram) {
esphome::optional<double> ret_val{};
size_t i = 10;
if (telegram[i] == 0xB6) {
i += telegram[i+1] + 2;
}
ret_val = (((uint32_t)telegram[i+5] << 8) + (uint32_t)telegram[i+4]);
return ret_val;
};
esphome::optional<double> get_temp_room_avg_c(std::vector<unsigned char> &telegram) {
esphome::optional<double> ret_val{};
size_t i = 10;
if (telegram[i] == 0xB6) {
i += telegram[i+1] + 2;
}
ret_val = (((uint32_t)telegram[i+15]) + ((uint32_t)telegram[i+14])/256.0);
return ret_val;
};
};