mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-18 12:13:28 +02:00
6682c43dfa
## Description: Move esphome-core codebase into esphome (and a bunch of other refactors). See https://github.com/esphome/feature-requests/issues/97 Yes this is a shit ton of work and no there's no way to automate it :( But it will be worth it 👍 Progress: - Core support (file copy etc): 80% - Base Abstractions (light, switch): ~50% - Integrations: ~10% - Working? Yes, (but only with ported components). Other refactors: - Moves all codegen related stuff into a single class: `esphome.codegen` (imported as `cg`) - Rework coroutine syntax - Move from `component/platform.py` to `domain/component.py` structure as with HA - Move all defaults out of C++ and into config validation. - Remove `make_...` helpers from Application class. Reason: Merge conflicts with every single new integration. - Pointer Variables are stored globally instead of locally in setup(). Reason: stack size limit. Future work: - Rework const.py - Move all `CONF_...` into a conf class (usage `conf.UPDATE_INTERVAL` vs `CONF_UPDATE_INTERVAL`). Reason: Less convoluted import block - Enable loading from `custom_components` folder. **Related issue (if applicable):** https://github.com/esphome/feature-requests/issues/97 **Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):** esphome/esphome-docs#<esphome-docs PR number goes here> ## Checklist: - [ ] The code change is tested and works locally. - [ ] Tests have been added to verify that the new code works (under `tests/` folder). If user exposed functionality or configuration variables are added/changed: - [ ] Documentation added/updated in [esphomedocs](https://github.com/OttoWinter/esphomedocs).
113 lines
4.0 KiB
C++
113 lines
4.0 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:
|
|
BME280Component(uint32_t update_interval) : PollingComponent(update_interval) {}
|
|
|
|
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
|