mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
110 lines
3.9 KiB
C++
110 lines
3.9 KiB
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/sensor/sensor.h"
|
|
#include "esphome/components/i2c/i2c.h"
|
|
|
|
namespace esphome {
|
|
namespace bme280 {
|
|
|
|
/// Internal struct storing the calibration values of an BME280.
|
|
struct BME280CalibrationData {
|
|
uint16_t t1; // 0x88 - 0x89
|
|
int16_t t2; // 0x8A - 0x8B
|
|
int16_t t3; // 0x8C - 0x8D
|
|
|
|
uint16_t p1; // 0x8E - 0x8F
|
|
int16_t p2; // 0x90 - 0x91
|
|
int16_t p3; // 0x92 - 0x93
|
|
int16_t p4; // 0x94 - 0x95
|
|
int16_t p5; // 0x96 - 0x97
|
|
int16_t p6; // 0x98 - 0x99
|
|
int16_t p7; // 0x9A - 0x9B
|
|
int16_t p8; // 0x9C - 0x9D
|
|
int16_t p9; // 0x9E - 0x9F
|
|
|
|
uint8_t h1; // 0xA1
|
|
int16_t h2; // 0xE1 - 0xE2
|
|
uint8_t h3; // 0xE3
|
|
int16_t h4; // 0xE4 - 0xE5[3:0]
|
|
int16_t h5; // 0xE5[7:4] - 0xE6
|
|
int8_t h6; // 0xE7
|
|
};
|
|
|
|
/** Enum listing all Oversampling values for the BME280.
|
|
*
|
|
* Oversampling basically means measuring a condition multiple times. Higher oversampling
|
|
* values therefore increase the time required to read sensor values but increase accuracy.
|
|
*/
|
|
enum BME280Oversampling {
|
|
BME280_OVERSAMPLING_NONE = 0b000,
|
|
BME280_OVERSAMPLING_1X = 0b001,
|
|
BME280_OVERSAMPLING_2X = 0b010,
|
|
BME280_OVERSAMPLING_4X = 0b011,
|
|
BME280_OVERSAMPLING_8X = 0b100,
|
|
BME280_OVERSAMPLING_16X = 0b101,
|
|
};
|
|
|
|
/** Enum listing all Infinite Impulse Filter values for the BME280.
|
|
*
|
|
* Higher values increase accuracy, but decrease response time.
|
|
*/
|
|
enum BME280IIRFilter {
|
|
BME280_IIR_FILTER_OFF = 0b000,
|
|
BME280_IIR_FILTER_2X = 0b001,
|
|
BME280_IIR_FILTER_4X = 0b010,
|
|
BME280_IIR_FILTER_8X = 0b011,
|
|
BME280_IIR_FILTER_16X = 0b100,
|
|
};
|
|
|
|
/// This class implements support for the BME280 Temperature+Pressure+Humidity i2c sensor.
|
|
class BME280Component : public PollingComponent, public i2c::I2CDevice {
|
|
public:
|
|
void set_temperature_sensor(sensor::Sensor *temperature_sensor) { temperature_sensor_ = temperature_sensor; }
|
|
void set_pressure_sensor(sensor::Sensor *pressure_sensor) { pressure_sensor_ = pressure_sensor; }
|
|
void set_humidity_sensor(sensor::Sensor *humidity_sensor) { humidity_sensor_ = humidity_sensor; }
|
|
|
|
/// Set the oversampling value for the temperature sensor. Default is 16x.
|
|
void set_temperature_oversampling(BME280Oversampling temperature_over_sampling);
|
|
/// Set the oversampling value for the pressure sensor. Default is 16x.
|
|
void set_pressure_oversampling(BME280Oversampling pressure_over_sampling);
|
|
/// Set the oversampling value for the humidity sensor. Default is 16x.
|
|
void set_humidity_oversampling(BME280Oversampling humidity_over_sampling);
|
|
/// Set the IIR Filter used to increase accuracy, defaults to no IIR Filter.
|
|
void set_iir_filter(BME280IIRFilter iir_filter);
|
|
|
|
// ========== INTERNAL METHODS ==========
|
|
// (In most use cases you won't need these)
|
|
void setup() override;
|
|
void dump_config() override;
|
|
float get_setup_priority() const override;
|
|
void update() override;
|
|
|
|
protected:
|
|
/// Read the temperature value and store the calculated ambient temperature in t_fine.
|
|
float read_temperature_(int32_t *t_fine);
|
|
/// Read the pressure value in hPa using the provided t_fine value.
|
|
float read_pressure_(int32_t t_fine);
|
|
/// Read the humidity value in % using the provided t_fine value.
|
|
float read_humidity_(int32_t t_fine);
|
|
uint8_t read_u8_(uint8_t a_register);
|
|
uint16_t read_u16_le_(uint8_t a_register);
|
|
int16_t read_s16_le_(uint8_t a_register);
|
|
|
|
BME280CalibrationData calibration_;
|
|
BME280Oversampling temperature_oversampling_{BME280_OVERSAMPLING_16X};
|
|
BME280Oversampling pressure_oversampling_{BME280_OVERSAMPLING_16X};
|
|
BME280Oversampling humidity_oversampling_{BME280_OVERSAMPLING_16X};
|
|
BME280IIRFilter iir_filter_{BME280_IIR_FILTER_OFF};
|
|
sensor::Sensor *temperature_sensor_;
|
|
sensor::Sensor *pressure_sensor_;
|
|
sensor::Sensor *humidity_sensor_;
|
|
enum ErrorCode {
|
|
NONE = 0,
|
|
COMMUNICATION_FAILED,
|
|
WRONG_CHIP_ID,
|
|
} error_code_{NONE};
|
|
};
|
|
|
|
} // namespace bme280
|
|
} // namespace esphome
|