CircuitPython support for DHT11 and DHT22 type temperature/humidity devices
Project description
Introduction
CircuitPython support for the DHT11 and DHT22 temperature and humidity devices.
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-dht
To install system-wide (this may be required in some cases):
sudo pip3 install adafruit-circuitpython-dht
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-dht
Usage Example
Hardware Set-up
Designed specifically to work with the Adafruit DHT series sensors:
Please check the device datasheet for the appropriate value.
Be sure that you are running the Buster Operating System.
Make sure that your user is part of the gpio group.
Known Issues
The library may or may not work in Linux 64-bit platforms.
The Raspberry PI Zero does not provide reliable readings.
Readings in FeatherS2 does not work as expected.
Basics
Of course, you must import the library to use it:
import adafruit_dht
The DHT type devices use single data wire, so import the board pin
from board import <pin>
Now, to initialize the DHT11 device:
dht_device = adafruit_dht.DHT11(<pin>)
OR initialize the DHT22 device:
dht_device = adafruit_dht.DHT22(<pin>)
Read temperature and humidity
Now get the temperature and humidity values
temperature = dht_device.temperature
humidity = dht_device.humidity
These properties may raise an exception if a problem occurs. You should use try/raise logic and catch RuntimeError and then retry getting the values after at least 2 seconds. If you try again to get a result within 2 seconds, cached values are returned.
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_dht-4.0.6.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_dht-4.0.6.tar.gz
- Upload date:
- Size: 30.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4b3a560a5595ce58a0349127d2f098840e5d3b875a14555dbd45d7d2e059f30 |
|
MD5 | 4a7b6ca1a768cd143ffb8b0ff59c18c3 |
|
BLAKE2b-256 | 1f1acc933a140bb101eeec4ec1b4601a9f1ea43a33cb09552ef30ef980b72d9f |
File details
Details for the file adafruit_circuitpython_dht-4.0.6-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_dht-4.0.6-py3-none-any.whl
- Upload date:
- Size: 7.8 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 | f250711c24665e413091eb306a5c94f9e11d044e99bec289b41fa3846e105925 |
|
MD5 | f3f021c3156f6d5898cf48645836b2af |
|
BLAKE2b-256 | fb927fb86b94447790ab208624933adb3933c01e4ab3dd7c91540f83e9ad76d9 |