Skip to main content

CircuitPython driver for BME680 sensor over I2C

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

CircuitPython driver for BME680 sensor over I2C

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-bme680

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-bme680

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-bme680

Usage Example

import adafruit_bme680
import time
import board

# Create sensor object, communicating over the board's default I2C bus
i2c = board.I2C()   # uses board.SCL and board.SDA
bme680 = adafruit_bme680.Adafruit_BME680_I2C(i2c)

# change this to match the location's pressure (hPa) at sea level
bme680.sea_level_pressure = 1013.25

while True:
    print("\nTemperature: %0.1f C" % bme680.temperature)
    print("Gas: %d ohm" % bme680.gas)
    print("Humidity: %0.1f %%" % bme680.relative_humidity)
    print("Pressure: %0.3f hPa" % bme680.pressure)
    print("Altitude = %0.2f meters" % bme680.altitude)

    time.sleep(2)

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_bme680-3.7.14.tar.gz (31.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adafruit_circuitpython_bme680-3.7.14-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file adafruit_circuitpython_bme680-3.7.14.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_bme680-3.7.14.tar.gz
Algorithm Hash digest
SHA256 82efc6dac1c105cd5f86e189da90a37d79dac4328a509f8e2b6d6f6eb0639899
MD5 83f65d78dd230d71c7e0057d1dd6ea31
BLAKE2b-256 56e775b865b4e255c2ced50fe62db68a49966f6569b4c8f51affbf6c5c5b86fb

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_bme680-3.7.14-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_bme680-3.7.14-py3-none-any.whl
Algorithm Hash digest
SHA256 146d6d7751ec360adbdde9c5d610f0e8dd13378ae76dd41bef150e77f947e76a
MD5 e58288010bc689166d25f93e869c9c4d
BLAKE2b-256 5a0853757ce2f553e4229ead56b690a8ab83f7aba58a9dba722438259bfd45aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page