10#define BME280_ERROR_WRONG_CHIP_ID "Wrong chip ID or no response"
14static const char *
const TAG =
"bme280.sensor";
16static const uint8_t BME280_REGISTER_DIG_T1 = 0x88;
17static const uint8_t BME280_REGISTER_DIG_T2 = 0x8A;
18static const uint8_t BME280_REGISTER_DIG_T3 = 0x8C;
20static const uint8_t BME280_REGISTER_DIG_P1 = 0x8E;
21static const uint8_t BME280_REGISTER_DIG_P2 = 0x90;
22static const uint8_t BME280_REGISTER_DIG_P3 = 0x92;
23static const uint8_t BME280_REGISTER_DIG_P4 = 0x94;
24static const uint8_t BME280_REGISTER_DIG_P5 = 0x96;
25static const uint8_t BME280_REGISTER_DIG_P6 = 0x98;
26static const uint8_t BME280_REGISTER_DIG_P7 = 0x9A;
27static const uint8_t BME280_REGISTER_DIG_P8 = 0x9C;
28static const uint8_t BME280_REGISTER_DIG_P9 = 0x9E;
30static const uint8_t BME280_REGISTER_DIG_H1 = 0xA1;
31static const uint8_t BME280_REGISTER_DIG_H2 = 0xE1;
32static const uint8_t BME280_REGISTER_DIG_H3 = 0xE3;
33static const uint8_t BME280_REGISTER_DIG_H4 = 0xE4;
34static const uint8_t BME280_REGISTER_DIG_H5 = 0xE5;
35static const uint8_t BME280_REGISTER_DIG_H6 = 0xE7;
37static const uint8_t BME280_REGISTER_CHIPID = 0xD0;
38static const uint8_t BME280_REGISTER_RESET = 0xE0;
40static const uint8_t BME280_REGISTER_CONTROLHUMID = 0xF2;
41static const uint8_t BME280_REGISTER_STATUS = 0xF3;
42static const uint8_t BME280_REGISTER_CONTROL = 0xF4;
43static const uint8_t BME280_REGISTER_CONFIG = 0xF5;
44static const uint8_t BME280_REGISTER_MEASUREMENTS = 0xF7;
45static const uint8_t BME280_REGISTER_PRESSUREDATA = 0xF7;
46static const uint8_t BME280_REGISTER_TEMPDATA = 0xFA;
47static const uint8_t BME280_REGISTER_HUMIDDATA = 0xFD;
49static const uint8_t BME280_MODE_FORCED = 0b01;
50static const uint8_t BME280_SOFT_RESET = 0xB6;
51static const uint8_t BME280_STATUS_IM_UPDATE = 0b01;
53inline uint16_t
combine_bytes(uint8_t msb, uint8_t lsb) {
return ((msb & 0xFF) << 8) | (lsb & 0xFF); }
73 switch (oversampling) {
100 if (!this->
read_byte(BME280_REGISTER_CHIPID, &chip_id)) {
105 if (chip_id != 0x60) {
107 this->
mark_failed(LOG_STR(BME280_ERROR_WRONG_CHIP_ID));
112 if (!this->
write_byte(BME280_REGISTER_RESET, BME280_SOFT_RESET)) {
122 this->
mark_failed(LOG_STR(
"Error reading status register"));
125 }
while ((
status & BME280_STATUS_IM_UPDATE) && (--retry));
126 if (
status & BME280_STATUS_IM_UPDATE) {
150 int16_t h4_raw =
read_u8_(BME280_REGISTER_DIG_H4) << 4 | (
read_u8_(BME280_REGISTER_DIG_H4 + 1) & 0x0F);
152 int16_t h5_raw =
read_u8_(BME280_REGISTER_DIG_H5 + 1) << 4 | (
read_u8_(BME280_REGISTER_DIG_H5) >> 4);
156 uint8_t humid_control_val = 0;
157 if (!this->
read_byte(BME280_REGISTER_CONTROLHUMID, &humid_control_val)) {
158 this->
mark_failed(LOG_STR(
"Read humidity control"));
161 humid_control_val &= ~0b00000111;
163 if (!this->
write_byte(BME280_REGISTER_CONTROLHUMID, humid_control_val)) {
164 this->
mark_failed(LOG_STR(
"Write humidity control"));
168 uint8_t config_register = 0;
169 if (!this->
read_byte(BME280_REGISTER_CONFIG, &config_register)) {
173 config_register &= ~0b11111100;
174 config_register |= 0b101 << 5;
175 config_register |= (this->
iir_filter_ & 0b111) << 2;
176 if (!this->
write_byte(BME280_REGISTER_CONFIG, config_register)) {
182 ESP_LOGCONFIG(TAG,
"BME280:");
183 switch (this->error_code_) {
185 ESP_LOGE(TAG, ESP_LOG_MSG_COMM_FAIL);
188 ESP_LOGE(TAG, BME280_ERROR_WRONG_CHIP_ID);
195 LOG_UPDATE_INTERVAL(
this);
209 ESP_LOGV(TAG,
"Sending conversion request");
210 uint8_t meas_value = 0;
213 meas_value |= BME280_MODE_FORCED;
214 if (!this->
write_byte(BME280_REGISTER_CONTROL, meas_value)) {
219 float meas_time = 1.5f;
226 if (!this->
read_bytes(BME280_REGISTER_MEASUREMENTS, data, 8)) {
227 ESP_LOGW(TAG,
"Error reading registers");
234 ESP_LOGW(TAG,
"Invalid temperature");
241 ESP_LOGV(TAG,
"Temperature=%.1f°C Pressure=%.1fhPa Humidity=%.1f%%",
temperature,
pressure, humidity);
252 int32_t adc = ((data[3] & 0xFF) << 16) | ((data[4] & 0xFF) << 8) | (data[5] & 0xFF);
254 if (adc == 0x80000) {
263 int32_t
const var1 = (((adc >> 3) - (t1 << 1)) * t2) >> 11;
264 int32_t
const var2 = (((((adc >> 4) - t1) * ((adc >> 4) - t1)) >> 12) * t3) >> 14;
265 *t_fine = var1 + var2;
272 int32_t adc = ((data[0] & 0xFF) << 16) | ((data[1] & 0xFF) << 8) | (data[2] & 0xFF);
274 if (adc == 0x80000) {
288 int64_t var1, var2, p;
289 var1 = int64_t(t_fine) - 128000;
290 var2 = var1 * var1 * p6;
291 var2 = var2 + ((var1 * p5) << 17);
292 var2 = var2 + (p4 << 35);
293 var1 = ((var1 * var1 * p3) >> 8) + ((var1 * p2) << 12);
294 var1 = ((int64_t(1) << 47) + var1) * p1 >> 33;
300 p = (((p << 31) - var2) * 3125) / var1;
301 var1 = (p9 * (p >> 13) * (p >> 13)) >> 25;
302 var2 = (p8 * p) >> 19;
304 p = ((p + var1 + var2) >> 8) + (p7 << 4);
305 return (p / 256.0f) / 100.0f;
309 uint16_t
const raw_adc = ((data[6] & 0xFF) << 8) | (data[7] & 0xFF);
310 if (raw_adc == 0x8000)
313 int32_t
const adc = raw_adc;
322 int32_t v_x1_u32r = t_fine - 76800;
324 v_x1_u32r = ((((adc << 14) - (h4 << 20) - (h5 * v_x1_u32r)) + 16384) >> 15) *
325 (((((((v_x1_u32r * h6) >> 10) * (((v_x1_u32r * h3) >> 11) + 32768)) >> 10) + 2097152) * h2 + 8192) >> 14);
327 v_x1_u32r = v_x1_u32r - (((((v_x1_u32r >> 15) * (v_x1_u32r >> 15)) >> 7) * h1) >> 4);
329 v_x1_u32r = v_x1_u32r < 0 ? 0 : v_x1_u32r;
330 v_x1_u32r = v_x1_u32r > 419430400 ? 419430400 : v_x1_u32r;
331 float const h = v_x1_u32r >> 12;
353 return (data >> 8) | (data << 8);
void mark_failed()
Mark this component as failed.
void status_set_warning()
ESPDEPRECATED("Use const char* or uint32_t overload instead. Removed in 2026.7.0", "2026.1.0") void set_timeout(const std voi set_timeout)(const char *name, uint32_t timeout, std::function< void()> &&f)
Set a timeout function with a unique name.
void reset_to_construction_state()
Reset this component back to the construction state to allow setup to run again.
void status_clear_warning()
uint8_t read_u8_(uint8_t a_register)
int16_t read_s16_le_(uint8_t a_register)
BME280IIRFilter iir_filter_
float read_humidity_(const uint8_t *data, int32_t t_fine)
Read the humidity value in % using the provided t_fine value.
virtual bool read_byte(uint8_t a_register, uint8_t *data)=0
virtual bool read_byte_16(uint8_t a_register, uint16_t *data)=0
sensor::Sensor * pressure_sensor_
BME280CalibrationData calibration_
virtual bool write_byte(uint8_t a_register, uint8_t data)=0
void set_iir_filter(BME280IIRFilter iir_filter)
Set the IIR Filter used to increase accuracy, defaults to no IIR Filter.
void set_humidity_oversampling(BME280Oversampling humidity_over_sampling)
Set the oversampling value for the humidity sensor. Default is 16x.
BME280Oversampling temperature_oversampling_
void set_pressure_oversampling(BME280Oversampling pressure_over_sampling)
Set the oversampling value for the pressure sensor. Default is 16x.
BME280Oversampling humidity_oversampling_
float read_pressure_(const uint8_t *data, int32_t t_fine)
Read the pressure value in hPa using the provided t_fine value.
enum esphome::bme280_base::BME280Component::ErrorCode NONE
void set_temperature_oversampling(BME280Oversampling temperature_over_sampling)
Set the oversampling value for the temperature sensor. Default is 16x.
sensor::Sensor * humidity_sensor_
void dump_config() override
BME280Oversampling pressure_oversampling_
sensor::Sensor * temperature_sensor_
uint16_t read_u16_le_(uint8_t a_register)
virtual bool read_bytes(uint8_t a_register, uint8_t *data, size_t len)=0
float read_temperature_(const uint8_t *data, int32_t *t_fine)
Read the temperature value and store the calculated ambient temperature in t_fine.
void publish_state(float state)
Publish a new state to the front-end.
BME280Oversampling
Enum listing all Oversampling values for the BME280.
@ BME280_OVERSAMPLING_16X
@ BME280_OVERSAMPLING_NONE
const char * oversampling_to_str(BME280Oversampling oversampling)
const char * iir_filter_to_str(BME280IIRFilter filter)
uint16_t combine_bytes(uint8_t msb, uint8_t lsb)
uint8_t oversampling_to_time(BME280Oversampling over_sampling)
BME280IIRFilter
Enum listing all Infinite Impulse Filter values for the BME280.
void HOT delay(uint32_t ms)