GitHub - mapler/DHT11_Python: Pure Python library for reading DHT11 sensor on Raspberry Pi
This simple class can be used for reading temperature and humidity values from DHT11 sensor on Raspberry Pi.
Usage
- Instantiate the
DHT11class with the pin number as constructor parameter. - Call
read()method, which will returnDHT11Resultobject with actual values and error code.
For example:
import RPi.GPIO as GPIO import dht11 # initialize GPIO GPIO.setwarnings(False) GPIO.setmode(GPIO.BCM) GPIO.cleanup() # read data using pin 14 instance = dht11.DHT11(pin = 14) result = instance.read() if result.is_valid(): print("Temperature: %d C" % result.temperature) print("Humidity: %d %%" % result.humidity) else: print("Error: %d" % result.error_code)
For working example, see dht11_example.py (you probably need to adjust pin for your configuration)
License
This project is licensed under the terms of the MIT license.