mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
32 lines
923 B
C++
32 lines
923 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/sensor/sensor.h"
|
|
#include "esphome/components/i2c/i2c.h"
|
|
|
|
namespace esphome {
|
|
namespace sdp3x {
|
|
|
|
enum MeasurementMode { MASS_FLOW_AVG, DP_AVG };
|
|
|
|
class SDP3XComponent : public PollingComponent, public i2c::I2CDevice, public sensor::Sensor {
|
|
public:
|
|
/// Schedule temperature+pressure readings.
|
|
void update() override;
|
|
/// Setup the sensor and test for a connection.
|
|
void setup() override;
|
|
void dump_config() override;
|
|
|
|
float get_setup_priority() const override;
|
|
void set_measurement_mode(MeasurementMode mode) { measurement_mode_ = mode; }
|
|
|
|
protected:
|
|
/// Internal method to read the pressure from the component after it has been scheduled.
|
|
void read_pressure_();
|
|
|
|
bool check_crc_(const uint8_t data[], uint8_t size, uint8_t checksum);
|
|
MeasurementMode measurement_mode_;
|
|
};
|
|
|
|
} // namespace sdp3x
|
|
} // namespace esphome
|