diff --git a/README.md b/README.md index 111914d..5bfecb3 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,9 @@ This library allows the user to: * Read altitude in meters * Read altitude in feet +__Hint__: the default I2C address used by the library is (0x77), as in Adafruit_BME280.h. If you sensor board uses a different +address you can set your own via the .begin(...) method. + Repository Contents ------------------- @@ -31,6 +34,7 @@ Version History * [V_1.0.0](https://github.com/mhaack/Adafruit_BME280_Library/releases/tag/1.0.0) - September 2015 Initial Release * [V_1.0.4](https://github.com/mhaack/Adafruit_BME280_Library/releases/tag/1.0.4.particle) - October 2015 pull from Adafruit repo to support multiple sensors with different calibration values * [V_1.1.2](https://github.com/mhaack/Adafruit_BME280_Library/releases/tag/1.1.2.particle) - January 2017 migrated to V2 library, pulled minor changes +* [V_1.1.3](https://github.com/mhaack/Adafruit_BME280_Library/releases/tag/1.1.3.particle) - February 2017 improved documentation License Information ------------------- diff --git a/examples/bme280test/bme280test.ino b/examples/bme280test/bme280test.ino index 2987cc3..5d49365 100644 --- a/examples/bme280test/bme280test.ino +++ b/examples/bme280test/bme280test.ino @@ -7,6 +7,10 @@ These sensors use I2C or SPI to communicate, 2 or 4 pins are required to interface. + Hint: the default I2C address used by the library is (0x77), as in + Adafruit_BME280.h. If you sensor board uses a different address you + can set your own via the .begin(...) method. + Adafruit invests time and resources providing this open source code, please support Adafruit andopen-source hardware by purchasing products from Adafruit! @@ -36,6 +40,7 @@ void setup() { Serial.begin(9600); Serial.println(F("BME280 test")); + // if (!bme.begin(0x76)) { if (!bme.begin()) { Serial.println("Could not find a valid BME280 sensor, check wiring!"); while (1); diff --git a/library.properties b/library.properties index 2b64053..9bf537b 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Adafruit_BME280 -version=1.1.2 +version=1.1.3 license=BSD license author=Adafruit , Markus Haack (https://github.com/mhaack) sentence=Adafruit BME280 Library