- 通过原生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 GPIOimport timechannel = 7 #引脚号Pin7data = [] #温湿度值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:continuewhile GPIO.input(channel) == GPIO.HIGH:continuewhile j < 40:k = 0while GPIO.input(channel) == GPIO.LOW:continuewhile GPIO.input(channel) == GPIO.HIGH:k += 1if k > 100:breakif k < 8: #通过计数的方式判断是数据位高电平长短,以置0或1。(此方式有待商榷)data.append(0)else:data.append(1)j += 1print ("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 = 0humidity_point = 0temperature = 0temperature_point = 0check = 0for 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_DHTsudo python setup.py install
后面两个数值11代表使用的是DHT11模块,24代表着所接的GIPO引脚编号(BCM)。cd examplesPython 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!’) ```
