A python library for accessing the BME280 combined humidity and pressure sensor from Bosch
Go to file
Christian Nicolai eb28f7385a module: ignore known python 3.7 failure for now
Pylint 1.9 does not work on Python 3.7 but updating to Pylint 2.x would drop Python 2 support, see https://github.com/PyCQA/pylint/issues/2241
2019-08-17 21:20:31 +02:00
bme280 module: add pylint and fix accordingly 2018-03-14 22:52:10 +01:00
tests module: add pytest for unit and snapshot testing with travis-ci 2018-03-14 22:51:18 +01:00
.gitignore module: add pytest for unit and snapshot testing with travis-ci 2018-03-14 22:51:18 +01:00
.pylintrc module: add pylint and fix accordingly 2018-03-14 22:52:10 +01:00
.pyup.yml module: make pyup less noisy 2019-03-13 08:36:27 +01:00
.travis.yml module: ignore known python 3.7 failure for now 2019-08-17 21:20:31 +02:00
LICENSE Initial commit 2016-05-30 21:42:56 +02:00
README.md module: add pytest for unit and snapshot testing with travis-ci 2018-03-14 22:51:18 +01:00
demo.py module: add pylint and fix accordingly 2018-03-14 22:52:10 +01:00
pytest.ini module: add pytest for unit and snapshot testing with travis-ci 2018-03-14 22:51:18 +01:00
requirements.txt deps: update pytest from 4.5.0 to 4.6.4 2019-07-02 08:49:10 +02:00
setup.py docs: update link 2018-03-14 23:26:57 +01:00

README.md

python-bme280

Build Status

A Python library for accessing the BME280 combined humidity and pressure from Bosch via python-smbus using the I2C interface.

Default settings are suitable for Raspberry Pi 2 and 3 and was successfully tested using a breakout.

I created this Python library in style of e.g. python-veml6070 or python-tsl2591 since I found only python scripts with limited functionality and minor bugs and the official driver from Bosch is only in C(++).

Although, it is heavily based on existing code from Bosch translated to Python and from SWITCHSCIENCE.

Usage

Consult the data sheet and see demo.py for clues how to use this library.

Not all functions of the chip are supported since I focused on the forced mode but data readout and parameter setting should work in normal mode, too. Please send pull requests for improvements and bug fixes!

License

Python files in this repository are released under the MIT license except those parts from other sources which are indicated where appropriate in the files.