ESPHome  2024.4.0
tee501.h
Go to the documentation of this file.
1 #pragma once
2 
6 
7 namespace esphome {
8 namespace tee501 {
9 
12  public:
13  void setup() override;
14  void dump_config() override;
15  float get_setup_priority() const override;
16  void update() override;
17 
18  protected:
19  unsigned char calc_crc8_(const unsigned char buf[], unsigned char from, unsigned char to);
20 
22 };
23 
24 } // namespace tee501
25 } // namespace esphome
float get_setup_priority() const override
Definition: tee501.cpp:41
enum esphome::tee501::TEE501Component::ErrorCode NONE
This class simplifies creating components that periodically check a state.
Definition: component.h:283
void dump_config() override
Definition: tee501.cpp:23
This class implements support for the tee501 of temperature i2c sensors.
Definition: tee501.h:11
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
This Class provides the methods to read/write bytes from/to an i2c device.
Definition: i2c.h:133
unsigned char calc_crc8_(const unsigned char buf[], unsigned char from, unsigned char to)
Definition: tee501.cpp:65