CircuitPython library for MCP9808 high accuracy temperature sensor.
Project description
Introduction
The MCP9808 is an awesome, high accuracy temperature sensor that communicates over I2C. Its available on Adafruit as a breakout.
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-mcp9808
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-mcp9808
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-mcp9808
Usage Notes
Getting the temperature in Celsius is easy! First, import all of the pins from the board, board.I2C() for native I2C communication and the thermometer library itself.
import board
import adafruit_mcp9808
Next, initialize the I2C bus in a with statement so it always gets shut down ok. Then, construct the thermometer class:
# Do one reading
with board.I2C() as i2c:
t = adafruit_mcp9808.MCP9808(i2c)
# Finally, read the temperature property and print it out
print(t.temperature)
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
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
Built Distribution
File details
Details for the file adafruit_circuitpython_mcp9808-3.3.24.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_mcp9808-3.3.24.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | babdd22afc21150eb412853465728e43b82a5f2a5a8bdf655c55cf06cc1616f8 |
|
MD5 | 15fee9571bb4ae4f7232724c4caf723c |
|
BLAKE2b-256 | dfaa64970aa7c74ba32c607792bf7af226eadc5dbab22d31a225c31c8a128b17 |
File details
Details for the file adafruit_circuitpython_mcp9808-3.3.24-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_mcp9808-3.3.24-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3715e6ee32c9d5d7fadfd136c8b250a0581a23fd6b415b266dad43d52893072 |
|
MD5 | bd6ef8ee5fd11450d8a1797e0cec9ebc |
|
BLAKE2b-256 | 5741e62df4e36eb9a23a6d455baae0be7bbc99249588ee4af4b782f93b7ae619 |