DHT11_Python
DHT11_Python copied to clipboard
Pure Python library for reading DHT11 sensor on Raspberry Pi
I have installed the package, but the error code 1, which is the ERR_MISSING_DATA code constantly throws. Any ideas?
pi@raspberrypi:~ $ python dht11.py Traceback (most recent call last): File "dht11.py", line 2, in import dht11 File "/home/pi/dht11.py", line 12, in instance = dht11.DHT11(pin=14) AttributeError: 'module' object has no attribute...
Installing on Pi Zero V1.1 Setup.py returned error in line 15: NameError: name 'setuptools' is not defined. I think this is because you imported 'find_packages' as a separate module (using...
It might be of use to mix these two as the code is almost the same
The owner has to upload it for them to become the owner of the package as well. [Link to guide](https://packaging.python.org/tutorials/packaging-projects/)
Hello, thank you for your great work on this projekt but is it possible to make it compatible with windows IoT? I tried to exchange the import form "import RPi.GPIO...
Hi, I am Naohiko Yamaguchi from Japan. Perhaps, this program can't return correct temperature data when sub-zero temperature. Current code for calculate Temperature/Humidity is below. ``` temperature = the_bytes[2] +...