Hi,
i cannot get the DHT11 Sensor running in my WEBIOPI-Script
Are there any instructions for DHT 11?
I tried to get it work with Adafruit library, HowTo:
https://www.devin.cl/blog/dht11-webiopi/If i execute a simple script like this it works:
import Adafruit_DHT
SENSOR = Adafruit_DHT.DHT11
PIN = 7
humidity, temperature = Adafruit_DHT.read_retry(SENSOR, PIN)
print (temp)
however if i simply try to get the following line in my WEBIOPI-Script:
import Adafruit_DHT
i get an error:
Import Error: no module named Adafruit_DHT
Can somebody help me or has already got the DHT11 to work with webiopi?
Thanks