fix advanced begin()

This commit is contained in:
Lady Ada 2019-12-29 02:46:31 -05:00
parent 0b243f0ec1
commit f107b13f1f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ void setup() {
Serial.begin(9600); Serial.begin(9600);
Serial.println(F("BME280 test")); Serial.println(F("BME280 test"));
if (! bme.begin(&Wire)) { if (! bme.begin(0x77, &Wire)) {
Serial.println("Could not find a valid BME280 sensor, check wiring!"); Serial.println("Could not find a valid BME280 sensor, check wiring!");
while (1); while (1);
} }