ESPHome  2024.4.0
template_text_sensor.cpp
Go to the documentation of this file.
1 #include "template_text_sensor.h"
2 #include "esphome/core/log.h"
3 
4 namespace esphome {
5 namespace template_ {
6 
7 static const char *const TAG = "template.text_sensor";
8 
10  if (!this->f_.has_value())
11  return;
12 
13  auto val = (*this->f_)();
14  if (val.has_value()) {
15  this->publish_state(*val);
16  }
17 }
19 void TemplateTextSensor::set_template(std::function<optional<std::string>()> &&f) { this->f_ = f; }
20 void TemplateTextSensor::dump_config() { LOG_TEXT_SENSOR("", "Template Sensor", this); }
21 
22 } // namespace template_
23 } // namespace esphome
optional< std::function< optional< std::string >)> > f_
mopeka_std_values val[4]
void publish_state(const std::string &state)
Definition: text_sensor.cpp:9
const char *const TAG
Definition: spi.cpp:8
void set_template(std::function< optional< std::string >()> &&f)
const float HARDWARE
For components that deal with hardware and are very important like GPIO switch.
Definition: component.cpp:18
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7