[BME280] raise standby time (#3804)

This commit is contained in:
h3ndrik 2022-09-18 21:25:59 +02:00 committed by Jesse Hills
parent fb9984e21f
commit 47a7a239ae
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -163,7 +163,7 @@ void BME280Component::setup() {
return;
}
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;
if (!this->write_byte(BME280_REGISTER_CONFIG, config_register)) {
this->mark_failed();