A python library for accessing the BME280 combined humidity and pressure sensor from Bosch
Go to file
cn 36050ae49b ci: use latest Poetry 2023-05-12 13:34:53 +02:00
.github ci: use latest Poetry 2023-05-12 13:34:53 +02:00
bme280 module: fix formatting with yapf 0.32.0 2022-01-03 13:40:53 +01:00
tests module: support Python 3 only 2021-05-21 13:42:43 +02:00
.editorconfig module: add editorconfig 2020-08-14 11:39:41 +02:00
.gitignore module: adopt poetry dependency manager 2020-08-04 20:47:01 +02:00
.pylintrc module: use yapf formatter, reduce pylint warnings 2020-08-07 22:01:38 +02:00
.style.yapf module: use yapf formatter, reduce pylint warnings 2020-08-07 22:01:38 +02:00
LICENSE Initial commit 2016-05-30 21:42:56 +02:00
Makefile module: remove unused Makefile command 2021-05-21 13:49:37 +02:00
README.md ci: remove Travis 2021-05-21 13:48:54 +02:00
demo.py module: use yapf formatter, reduce pylint warnings 2020-08-07 22:01:38 +02:00
pyproject.toml module: yapf needs extra toml now 2022-04-01 01:12:51 +02:00

README.md

python-bme280

ci

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!

Develop

Run make help to find out about the available development commands.

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.