This simple class can be used for reading temperature and humidity values from DHT11 sensor on ODROID SBCs.
Based on szazo/DHT11_Python, and referenced from unims77/odroid_c1_dht11.
Tested on ODROID N2+. Might work on other ODROID SBCs, but if there's any issue, please report it!
To install, clone this repository and setup:
$ git clone https://github.com/somnisomni/DHT11_Python_Odroid
$ cd DHT11_Python_Odroid
$ pip3 install . # or with `sudo`- 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 odroid_wiringpi as wiringpi
import dht11
# initialize WiringPi
wiringpi.wiringPiSetup()
# read data using pin 4
instance = dht11.DHT11(pin = 4)
result = instance.read()
if result.is_valid():
print("Temperature: %-3.1f C" % result.temperature)
print("Humidity: %-3.1f %%" % result.humidity)
else:
print("Error: %d" % result.error_code)For working example, see example.py (you probably need to adjust pin for your configuration)
This project is licensed under the terms of the MIT license.