From 660471343ed698f17b34673075c413b055d1b2a9 Mon Sep 17 00:00:00 2001 From: Alexandre B Date: Sun, 7 Jul 2024 14:54:36 -0400 Subject: [PATCH] Update main.cpp --- ESP32-BME280/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ESP32-BME280/src/main.cpp b/ESP32-BME280/src/main.cpp index 576469c3a..991b0e275 100644 --- a/ESP32-BME280/src/main.cpp +++ b/ESP32-BME280/src/main.cpp @@ -42,7 +42,7 @@ void setup() { #endif #ifdef BMP280 Adafruit_BMP280 bmp; - unsigned status = bmp.begin(0x76); + unsigned status = bmp.begin(0x58); //0x58 if (!status) { Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!"); Serial.print("SensorID was: 0x"); Serial.println(bmp.sensorID(), 16);