Skip to content

Commit 23afef4

Browse files
committed
add Adafruit_DHT python implementation
1 parent 3e05872 commit 23afef4

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/usr/bin/env python
2+
# -*- coding:utf-8 -*-
3+
4+
import sys
5+
import dhtreader
6+
7+
DHT11 = 11
8+
DHT22 = 22
9+
AM2302 = 22
10+
11+
12+
dhtreader.init()
13+
14+
if len(sys.argv) != 3:
15+
print("usage: {0} [11|22|2302] GPIOpin#".format(sys.argv[0]))
16+
print("example: {0} 2302 Read from an AM2302 connected to GPIO #4".format(sys.argv[0]))
17+
sys.exit(2)
18+
19+
dev_type = None
20+
if sys.argv[1] == "11":
21+
dev_type = DHT11
22+
elif sys.argv[1] == "22":
23+
dev_type = DHT22
24+
elif sys.argv[1] == "2302":
25+
dev_type = AM2302
26+
else:
27+
print("invalid type, only 11, 22 and 2302 are supported for now!")
28+
sys.exit(3)
29+
30+
dhtpin = int(sys.argv[2])
31+
if dhtpin <= 0:
32+
print("invalid GPIO pin#")
33+
sys.exit(3)
34+
35+
print("using pin #{0}".format(dhtpin))
36+
t, h = dhtreader.read(dev_type, dhtpin)
37+
if t and h:
38+
print("Temp = {0} *C, Hum = {1} %".format(t, h))
39+
else:
40+
print("Failed to read from sensor, maybe try again?")

0 commit comments

Comments
 (0)