mirror of
https://github.com/esphome/esphome.git
synced 2025-01-08 22:01:44 +01:00
[BME280] raise standby time (#3804)
This commit is contained in:
parent
f6e5a8cb2a
commit
55ad45e3ee
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ void BME280Component::setup() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
config_register &= ~0b11111100;
|
config_register &= ~0b11111100;
|
||||||
config_register |= 0b000 << 5; // 0.5 ms standby time
|
config_register |= 0b101 << 5; // 1000 ms standby time
|
||||||
config_register |= (this->iir_filter_ & 0b111) << 2;
|
config_register |= (this->iir_filter_ & 0b111) << 2;
|
||||||
if (!this->write_byte(BME280_REGISTER_CONFIG, config_register)) {
|
if (!this->write_byte(BME280_REGISTER_CONFIG, config_register)) {
|
||||||
this->mark_failed();
|
this->mark_failed();
|
||||||
|
|
Loading…
Reference in a new issue