Python3 I2C Driver & Application for BMP280 Pressure Sensor
Project description
BMP280 Digital Pressure Sensor Driver for Python3
BMP280 is a digital pressure sensor manufactured by Bosch Sensortec. With this driver, you can use BMP280 with Python3 over I2C.
Dependencies
Only smbus2 other than Python.
Installation
pip3 install bmp-280
Usage
run-bmp280
or
from bmp_280 import BMP280
from time import sleep
bmp = BMP280(port=1, mode=BMP280.FORCED_MODE, oversampling_p=BMP280.OVERSAMPLING_P_x16, oversampling_t=BMP280.OVERSAMPLING_T_x1,
filter=BMP280.IIR_FILTER_OFF, standby=BMP280.T_STANDBY_1000)
pressure = bmp.read_pressure()
temp = bmp.read_temperature()
print("Pressure (hPa): " + str(pressure))
print("Temperature (°C): " + str(temp))
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bmp_280-0.1.2.tar.gz
(3.1 kB
view details)
Built Distribution
File details
Details for the file bmp_280-0.1.2.tar.gz
.
File metadata
- Download URL: bmp_280-0.1.2.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0eac030e85c71172b44606ba464aaf1d5661d91dc17877915fcf175437df9f47 |
|
MD5 | 3557db7aebebe9aa127dd59466740d04 |
|
BLAKE2b-256 | 0fc1004abf9e482bc13f16c0f0ad395ed09d0775adfd6be73e2a53ef2f8ae8e9 |
File details
Details for the file bmp_280-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: bmp_280-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29b06789cd9221507ea5af76e5abae4a4ec25d74429210a3886b5449493aee2e |
|
MD5 | 5d514ef2777220e854d4dae768b46f7b |
|
BLAKE2b-256 | f3310f3eff5d87458e5e614e281631867a9e7959c8329388c6834a47ab668e99 |