ESPHome  2024.4.2
a01nyub.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
8 
9 namespace esphome {
10 namespace a01nyub {
11 
13  public:
14  // Nothing really public.
15 
16  // ========== INTERNAL METHODS ==========
17  void loop() override;
18  void dump_config() override;
19 
20  protected:
21  void check_buffer_();
22 
23  std::vector<uint8_t> buffer_;
24 };
25 
26 } // namespace a01nyub
27 } // namespace esphome
std::vector< uint8_t > buffer_
Definition: a01nyub.h:23
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
Base-class for all sensors.
Definition: sensor.h:57