A web connected DHT sensor reading temperature and humidity values on Raspberry Pi
Project description
pi_dht_webthing
A web connected humidity and temperature sensor
This project provides a webthing API to a DHT11 or DHT22 humidity and temperature sensor running on a Raspberry Pi. As a webthing, the DHT sensor can be discovered and used by home automation systems or custom solutions supporting the webthing API.
The pi_dht_webthing exposes an http webthing endpoint which supports reading the humidity and temperature sensor values via http. E.g.
# webthing has been started on host 192.168.0.23
curl http://192.168.0.23:8070/properties
{
"temperature" : 17.3,
"humidity" : 79.9
}
A RaspberryPi/DHTxx hardware setup and wiring may look like DHT22 example.
To install this software you may use Docker or PIP package manager such as shown below
** Docker approach**
sudo docker run --privileged -p 8070:8070 -e gpio=2 grro/pi_dht_webthing:0.1.0
PIP approach
sudo pip install pi_dht_webthing
After this installation you may start the webthing http endpoint inside your python code or via command line using
sudo dht --command listen --h--port 8070 --gpio 2
Here, the webthing API will be bind on port 8070 and be connected to the DHTxx signal pin using gpio 2
Alternatively to the listen command, you can use the register command to register and start the webthing service as systemd unit. By doing this the webthing service will be started automatically on boot. Starting the server manually using the listen command is no longer necessary.
sudo dht --command register --port 8070 --gpio 2
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 pi_dht_webthing-0.1.2.tar.gz
.
File metadata
- Download URL: pi_dht_webthing-0.1.2.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbaf819b23e18f2dbc90adc765a6f23255e636733fda95cf8d7f63c88ab0ef38 |
|
MD5 | 1fe41bafa024e97355c9d41dedf04aba |
|
BLAKE2b-256 | 3d94cde2a6ad77a2ebb6935c32f33c88efed399388f6eb3a08d36f47667e039b |
File details
Details for the file pi_dht_webthing-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: pi_dht_webthing-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d09af90e606ee22e3a534360a1ef6e01dbdffa47124edfd87590afe021bd702 |
|
MD5 | aa5725d8340afc411f3be5914c177c21 |
|
BLAKE2b-256 | 02e400670fafa1caaac802978ab75c21041460557f10fa5c829b6d009fe6d182 |