Skip to main content

CircuitPython driver for the MS8607 PTH sensor

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

CircuitPython driver for the MS8607 PTH sensor

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-ms8607

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

sudo pip3 install adafruit-circuitpython-ms8607

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-ms8607

Usage Example

from time import sleep
import board
from adafruit_ms8607 import MS8607

i2c = board.I2C()
sensor = MS8607(i2c)

while True:

    print("Pressure: %.2f hPa" % sensor.pressure)
    print("Temperature: %.2f C" % sensor.temperature)
    print("Humidity: %.2f %% rH" % sensor.relative_humidity)
    sleep(1)

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-ms8607-1.0.19.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit-circuitpython-ms8607-1.0.19.tar.gz.

File metadata

File hashes

Hashes for adafruit-circuitpython-ms8607-1.0.19.tar.gz
Algorithm Hash digest
SHA256 a78280de506aefe1e9536bdea139c8c2f98fd03721e50a4444c49db2e8ff8945
MD5 97514c92c34e60e9a87f3fa429c2f31b
BLAKE2b-256 57919865296ccf6fb2562abba22d328aa83fc9445d199a2c664b53357b1eeebf

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_ms8607-1.0.19-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_ms8607-1.0.19-py3-none-any.whl
Algorithm Hash digest
SHA256 cfd9078f5c44f754ada0452aa277f0f5512bed47c9955463f10ba18006974003
MD5 0a03f0ddc3c7245f467610afd22428d0
BLAKE2b-256 2a47552bd701e44748339bde21b0b2b1e1615033bb1019982da5d42cbeb4c5b0

See more details on using hashes here.

Supported by

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