close
參考文章
 
所以須料
(1)Raspberry  Pi支援i2c
(2)支援i2c的2x16LCD
(3)一個DHT11
(4)一個10K電阻
(5)多條母母、公母與公公杜邦線
(我是使用已桿和電阻的模組)
如果是使用自己拼裝的方式,按照下圖接
如困DHT11左邊第一個pin接5V,第二個pin接10K電阻後再接5V,再接到Raspberry的pin7(GPIO4),第4個pin接地

undefined

 

如果是下面那種現成的模組,DAT--->pin7  ,VCC--->5V,GND--->pin接地端

20190614_095926.jpg

Raspberry啟用i2c,參考之前做的紀錄到step6

安裝build-essential與python-dev

sudo apt-get update
sudo apt-get install build-essential python-dev
 
下載與安裝Adafruit_Python_DHT
cd  Adafruit_Python_DHT
sudo python setup.py install
 
執行程式

sudo nano /home/pi/Adafruit_Python_DHT/examples/AdafruitDHT.py

修改AdafruitDHT.py(如果無法執行,可以直接轉貼以下程式碼

 

  1. #!/usr/bin/python  
  2.   
  3. # Copyright (c) 2014 Adafruit Industries  
  4.   
  5. # Author: Tony DiCola  
  6.   
  7.    
  8.   
  9. # Permission is hereby granted, free of charge, to any person obtaining a copy  
  10.   
  11. # of this software and associated documentation files (the "Software"), to deal  
  12.   
  13. # in the Software without restriction, including without limitation the rights  
  14.   
  15. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell  
  16.   
  17. # copies of the Software, and to permit persons to whom the Software is  
  18.   
  19. # furnished to do so, subject to the following conditions:  
  20.   
  21.    
  22.   
  23. # The above copyright notice and this permission notice shall be included in all  
  24.   
  25. # copies or substantial portions of the Software.  
  26.   
  27.    
  28.   
  29. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  
  30.   
  31. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  
  32.   
  33. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE  
  34.   
  35. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
  36.   
  37. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,  
  38.   
  39. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE  
  40.   
  41. # SOFTWARE.  
  42.   
  43. import sys  
  44.   
  45. import time  
  46.   
  47. sys.path.append("./raspi-gpio")  
  48.   
  49.    
  50.   
  51. import Adafruit_DHT  
  52.   
  53. from lcd_display import lcd  
  54.   
  55.    
  56.   
  57. # Parse command line parameters.  
  58.   
  59. sensor_args = { '11': Adafruit_DHT.DHT11,  
  60.   
  61.                                '22': Adafruit_DHT.DHT22,  
  62.   
  63.                                '2302': Adafruit_DHT.AM2302 }  
  64.   
  65. if len(sys.argv) == 3 and sys.argv[1in sensor_args:  
  66.   
  67.         sensor = sensor_args[sys.argv[1]]  
  68.   
  69.         pin = sys.argv[2]  
  70.   
  71. else:  
  72.   
  73.         print 'usage: sudo ./Adafruit_DHT.py [11|22|2302] GPIOpin#'  
  74.   
  75.         print 'example: sudo ./Adafruit_DHT.py 2302 4 - Read from an AM2302 connected to GPIO #4'  
  76.   
  77.         sys.exit(1)  
  78.   
  79.    
  80.   
  81. while(True):  
  82.   
  83. # Try to grab a sensor reading.  Use the read_retry method which will retry up  
  84.   
  85. # to 15 times to get a sensor reading (waiting 2 seconds between each retry).  
  86.   
  87.     humidity, temperature = Adafruit_DHT.read_retry(sensor, pin)  
  88.   
  89.    
  90.   
  91. # Un-comment the line below to convert the temperature to Fahrenheit.  
  92.   
  93. # temperature = temperature * 9/5.0 + 32  
  94.   
  95.    
  96.   
  97. # Note that sometimes you won't get a reading and  
  98.   
  99. # the results will be null (because Linux can't  
  100.   
  101. # guarantee the timing of calls to read the sensor).   
  102.   
  103. # If this happens try again!  
  104.   
  105.     if humidity is not None and temperature is not None:  
  106.   
  107.             my_lcd = lcd()  
  108.   
  109.             my_lcd.display_string(str(temperature)+"C"1)  
  110.   
  111.             my_lcd.display_string(str(humidity)+"%"2)  
  112.   
  113.             print 'Temp={0:0.1f}*  Humidity={1:0.1f}%'.format(temperature, humidity)  
  114.   
  115.     else:  
  116.   
  117.             print 'Failed to get reading. Try again!'  
  118.   
  119.             sys.exit(1)  
  120.   
  121.     time.sleep(1)  
  122.   
  123.    

存檔Ctrl+X Y存檔

執行AdafruitDHT.py

cd Adafruit_Python_DHT

cd examples

sudo ./AdafruitDHT.py 11 4       #(//11使用表示使用DHT11模組,4表示DHT11Data接線在GPIO4(Raspberry Pi 3 pin 7)

 

測試視頻

 

arrow
arrow
    文章標籤
    DHT11 DHT11&LCD
    全站熱搜
    創作者介紹
    創作者 定凱 的頭像
    定凱

    大的人身,小的心靈…保持赤子之心。

    定凱 發表在 痞客邦 留言(0) 人氣()