ESPHome  2024.4.1
copy_text_sensor.h
Go to the documentation of this file.
1 #pragma once
2 
5 
6 namespace esphome {
7 namespace copy {
8 
10  public:
11  void set_source(text_sensor::TextSensor *source) { source_ = source; }
12  void setup() override;
13  void dump_config() override;
14  float get_setup_priority() const override { return setup_priority::DATA; }
15 
16  protected:
18 };
19 
20 } // namespace copy
21 } // namespace esphome
float get_setup_priority() const override
const float DATA
For components that import data from directly connected sensors like DHT.
Definition: component.cpp:19
text_sensor::TextSensor * source_
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
void set_source(text_sensor::TextSensor *source)