Releases: hasenradball/Bosch_BME280_Arduino
Releases · hasenradball/Bosch_BME280_Arduino
v1.1.0 - Adapt Wire Interface
Changes
- restructure private members
- remove Pin dependency from I2C Bus
- rework examples for ESP32, ESP8266
- adapt workflow
What's Changed
- [esp8266/arduino]: Release v1.1.0 by @hasenradball in #4
- Release v1.1.0 by @hasenradball in #5
Full Changelog: v1.0.2...v1.1.0
Official Arduino Library Release
-prepare Library for official use in Arduino Library Registry
optimize Sensor settings due to weather monitoring
Set sensor settings to recommended settings for weather monitoring:
// Recommended settings of operation: => weather monitoring
_settings.osr_p = BME280_OVERSAMPLING_1X;
_settings.osr_t = BME280_OVERSAMPLING_1X;
_settings.osr_h = BME280_OVERSAMPLING_1X;
_settings.filter = BME280_FILTER_COEFF_OFF;
Update to v3.5.1 of Bosch BME280_driver
- update to v3.5.1 of Bosch driver
- introduce Error printing
- small rework of files
v0.0.5
Improvement of I²c init with ESP32.
adapted files:
- Bosch_BME280_Arduino.cpp
- README.md
- library.json
Add Example for Arduino Nano
- added example for Arduino Nano
Inital release of Bosch _BME280_Arduino i²C wrapper class
Initial release of v0.0.3.