bme test
This commit is contained in:
parent
469f7b5b42
commit
31aeea27e3
|
|
@ -40,8 +40,8 @@ namespace BME_Utils {
|
||||||
Adafruit_BME280::SAMPLING_X1, // Temperature sampling set to 1
|
Adafruit_BME280::SAMPLING_X1, // Temperature sampling set to 1
|
||||||
Adafruit_BME280::SAMPLING_X1, // Pressure sampling set to 1
|
Adafruit_BME280::SAMPLING_X1, // Pressure sampling set to 1
|
||||||
Adafruit_BME280::SAMPLING_X1, // Humidity sampling set to 1
|
Adafruit_BME280::SAMPLING_X1, // Humidity sampling set to 1
|
||||||
Adafruit_BME280::FILTER_OFF, // Filter off - immediate 100% step response
|
Adafruit_BME280::FILTER_OFF // Filter off - immediate 100% step response
|
||||||
Adafruit_BME280::STANDBY_MS_1000
|
//Adafruit_BME280::STANDBY_MS_1000
|
||||||
);
|
);
|
||||||
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, "BME", " BME280 Module init done!");
|
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, "BME", " BME280 Module init done!");
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -49,8 +49,8 @@ namespace BME_Utils {
|
||||||
bme.setSampling(Adafruit_BMP280::MODE_FORCED, // Operating Mode
|
bme.setSampling(Adafruit_BMP280::MODE_FORCED, // Operating Mode
|
||||||
Adafruit_BMP280::SAMPLING_X1, // Temp. oversampling
|
Adafruit_BMP280::SAMPLING_X1, // Temp. oversampling
|
||||||
Adafruit_BMP280::SAMPLING_X1, // Pressure oversampling
|
Adafruit_BMP280::SAMPLING_X1, // Pressure oversampling
|
||||||
Adafruit_BMP280::FILTER_OFF, // Filtering
|
Adafruit_BMP280::FILTER_OFF // Filtering
|
||||||
Adafruit_BMP280::STANDBY_MS_1000 // Standby time
|
//Adafruit_BMP280::STANDBY_MS_1000 // Standby time
|
||||||
);
|
);
|
||||||
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, "BMP", " BMP280 Module init done!");
|
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, "BMP", " BMP280 Module init done!");
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue