mirror of
https://github.com/esphome/esphome.git
synced 2025-09-15 01:32:19 +01:00
15 lines
507 B
C++
15 lines
507 B
C++
#include "esphome/core/log.h"
|
|
#include "teleinfo_sensor.h"
|
|
namespace esphome {
|
|
namespace teleinfo {
|
|
|
|
static const char *const TAG = "teleinfo_sensor";
|
|
TeleInfoSensor::TeleInfoSensor(const char *tag) { this->tag = std::string(tag); }
|
|
void TeleInfoSensor::publish_val(const std::string &val) {
|
|
auto newval = parse_number<float>(val).value_or(0.0f);
|
|
publish_state(newval);
|
|
}
|
|
void TeleInfoSensor::dump_config() { LOG_SENSOR(" ", "Teleinfo Sensor", this); }
|
|
} // namespace teleinfo
|
|
} // namespace esphome
|