This commit is contained in:
2024-07-07 13:34:35 -04:00
parent 4ad30915c1
commit b77d4d592e
2 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ void setup() {
sensors_values.temperature = 0.0;
// WaveShare BME280
unsigned status = bme.begin(0x76);
unsigned status = bme.begin(0x76); // I2C slave address 0x76 (SDO set to GND)
if (!status) {
Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!");
Serial.print("SensorID was: 0x"); Serial.println(bme.sensorID(),16);