Skip to content

Commit

Permalink
Review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Oct 31, 2021
1 parent 1cee01c commit 59f4770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/Humidity_BME280/app/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void init()
Wire.pins(SDA, SCL);
#endif

if(!bme.begin()) {
if(!bme.begin()) { // if(!bme.begin(0x76, &Wire)) { if you need a specific address
Serial.println(F("Could not find a valid BME280 sensor, check wiring, address, sensor ID!"));
Serial.print(F("SensorID was: 0x"));
Serial.println(bme.sensorID(), 16);
Expand Down

0 comments on commit 59f4770

Please sign in to comment.