6 #ifndef __SENSORS_BME280_h__
7 #define __SENSORS_BME280_h__
11 #include <BME280I2C.h>
15 BME280I2C::Settings settings(
20 BME280::StandbyTime_1000ms,
22 BME280::SpiEnable_False
32 _present = _bme.begin();
33 _bme.setSettings(settings);
35 bool measure (__attribute__((unused))
bool async=
false) {
36 if( present() ==
true ) {
39 _temperature = t * 10;