ESPHome 2026.5.0b1
Loading...
Searching...
No Matches
a01nyub.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
8
9namespace esphome::a01nyub {
10
12 public:
13 // Nothing really public.
14
15 // ========== INTERNAL METHODS ==========
16 void loop() override;
17 void dump_config() override;
18
19 protected:
20 void check_buffer_();
21
22 std::vector<uint8_t> buffer_;
23};
24
25} // namespace esphome::a01nyub
std::vector< uint8_t > buffer_
Definition a01nyub.h:22
Base-class for all sensors.
Definition sensor.h:47