Switch BMP085 mode to 0 for ULTRALOWPOWER

此提交包含在:
Wesley Ellis
2025-10-22 16:53:11 -04:00
父節點 ac15131296
當前提交 4cfbd3bad5
+3 -6
查看文件
@@ -312,12 +312,9 @@ bool EnvironmentSensorManager::begin() {
#endif
#if ENV_INCLUDE_BMP085
// first arg is MODE
// 0: ULTRALOWPOWER
// 1: STANDARD
// 2: HIGHRES
// 3: ULTRAHIGHRES
if (BMP085.begin(1, TELEM_WIRE)) {
// First argument is MODE (aka oversampling)
// choose ULTRALOWPOWER
if (BMP085.begin(0, TELEM_WIRE)) {
MESH_DEBUG_PRINTLN("Found sensor BMP085");
BMP085_initialized = true;
} else {