forked from SzczepanLeon/wmbus-drivers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver_elf.h
executable file
·34 lines (27 loc) · 974 Bytes
/
driver_elf.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_elf.cc
Copyright (C) 2021-2022 Fredrik Öhrström (gpl-3.0-or-later)
*/
#pragma once
#include "driver.h"
#include <vector>
#include <string>
struct Elf: Driver
{
Elf(std::string key = "") : Driver(std::string("elf"), key) {};
virtual esphome::optional<std::map<std::string, double>> get_values(std::vector<unsigned char> &telegram) override {
std::map<std::string, double> ret_val{};
ESP_LOGV(TAG, "Using driver '%s'", this->get_name().c_str());
add_to_map(ret_val, "total_energy_consumption_kwh", this->get_0E01(telegram));
add_to_map(ret_val, "total_energy_consumption_kwh", this->get_0E0A(telegram));
add_to_map(ret_val, "current_power_consumption_kw", this->get_0A2D(telegram));
add_to_map(ret_val, "total_water_m3", this->get_0C13(telegram));
if (ret_val.size() > 0) {
return ret_val;
}
else {
return {};
}
};
private:
};