- 通过原生Python获取
- 通过Python模块获取
- 在Python中使用该模块
- Set sensor type : Options are DHT11,DHT22 or AM2302
- Set GPIO sensor is connected to
- Use read_retry method. This will retry up to 15 times to
- get a sensor reading (waiting 2 seconds between each retry).
- Reading the DHT11 is very sensitive to timings and occasionally
- the Pi might fail to get a valid reading. So check if readings are valid.
通过原生Python获取
#!/usr/bin/python
#-*- coding:utf-8 -*-
import RPi.GPIO as GPIO
import time
channel = 7 #引脚号Pin7
data = [] #温湿度值
j = 0 #计数器
GPIO.setmode(GPIO.BOARD) #以BOARD编码格式
time.sleep(1) #时延一秒
GPIO.setup(channel, GPIO.OUT)
GPIO.output(channel, GPIO.LOW)
time.sleep(0.02) #给信号提示传感器开始工作
GPIO.output(channel, GPIO.HIGH)
GPIO.setup(channel, GPIO.IN)
while GPIO.input(channel) == GPIO.LOW:
continue
while GPIO.input(channel) == GPIO.HIGH:
continue
while j < 40:
k = 0
while GPIO.input(channel) == GPIO.LOW:
continue
while GPIO.input(channel) == GPIO.HIGH:
k += 1
if k > 100:
break
if k < 8: #通过计数的方式判断是数据位高电平长短,以置0或1。(此方式有待商榷)
data.append(0)
else:
data.append(1)
j += 1
print ("sensor is working.")
print (data) #输出初始数据高低电平
humidity_bit = data[0:8] #分组
humidity_point_bit = data[8:16]
temperature_bit = data[16:24]
temperature_point_bit = data[24:32]
check_bit = data[32:40]
humidity = 0
humidity_point = 0
temperature = 0
temperature_point = 0
check = 0
for i in range(8):
humidity += humidity_bit[i] * 2 ** (7 - i) #转换成十进制数据
humidity_point += humidity_point_bit[i] * 2 ** (7 - i)
temperature += temperature_bit[i] * 2 ** (7 - i)
temperature_point += temperature_point_bit[i] * 2 ** (7 - i)
check += check_bit[i] * 2 ** (7 - i)
tmp = humidity + humidity_point + temperature + temperature_point #十进制的数据相加
if check == tmp: #数据校验,相等则输出
print ("temperature : ", temperature, ", humidity : " , humidity)
else: #错误输出错误信息,和校验数据
print ("wrong")
print ("temperature : ", temperature, ", humidity : " , humidity, " check : ", check, " tmp : ", tmp)
GPIO.cleanup() #重置针脚
通过Python模块获取
- 下载模块
github.com/adafruit/Adafruit_Python_DHT.git
- 安装模块
安装完成后进入examples文件夹运行AdfruitDHT.py可以获得结果。cd Adafruit_Python_DHT
sudo python setup.py install
后面两个数值11代表使用的是DHT11模块,24代表着所接的GIPO引脚编号(BCM)。cd examples
Python AdafruitDHT.py 11 24
在Python中使用该模块
```python import Adafruit_DHT
Set sensor type : Options are DHT11,DHT22 or AM2302
sensor=Adafruit_DHT.DHT11
Set GPIO sensor is connected to
GPIO=24
Use read_retry method. This will retry up to 15 times to
get a sensor reading (waiting 2 seconds between each retry).
humidity, temperature = Adafruit_DHT.read_retry(sensor, GPIO)
Reading the DHT11 is very sensitive to timings and occasionally
the Pi might fail to get a valid reading. So check if readings are valid.
if humidity is not None and temperature is not None: print(‘Temp={0:0.1f}*C Humidity={1:0.1f}%’.format(temperature, humidity)) else: print(‘Failed to get reading. Try again!’) ```