[問題] raspberry pi 溫濕度定時器

作者: daniel098962 (阿河)   2016-07-14 12:14:55
各位大大好,小弟最近在玩raspberry pi
沒找到PI的專版 就到這邊來問了~
最近在PI上加了DHT 11抓溫溼度
想要加個定時器讓他可以每隔一段時間便抓一次溫溼度
因為沒什麼碰過python的語言
想請教一下要怎麼去寫
抓溫溼度的程式是參考網路上葉難的文章
程式碼以下
「先安裝所需套件:
$ sudo apt-get update
$ sudo apt-get install build-essential python-dev
然後下載,進入該目錄:
$ git clone https://github.com/adafruit/Adafruit_Python_DHT.git
$ cd Adafruit_Python_DHT
安裝:
$ sudo python setup.py install
接著就能讀取DHT11了,執行寫好的範例Python程式:
$ cd examples
$ sudo ./AdafruitDHT.py 11 4
Temp=27.0*C Humidity=81.0%」
我在網路看到的定時器範例像以下
import threading
import time
def hello(name):
print "hello %s\n" % name
global timer
timer = threading.Timer(2.0, hello, ["Hawk"])
timer.start()
if __name__ == "__main__":
timer = threading.Timer(2.0, hello, ["Hawk"])
timer.start()
若我今天重複執行抓溫度的程式的話
方法那邊該怎麼寫呢
謝謝
作者: ihcaoe (Ihc)   2016-07-14 13:14:00
可以用linux指令,`watch ./AdafruitDHT.p 11 4`要python也可以while+Thread.sleep()
作者: enjoyloli (M)   2016-07-14 14:46:00
https://goo.gl/ErMC0m 看一下官方的CODE加個sleep你試試看 不行的話在commit我改看看*comment

Links booklink

Contact Us: admin [ a t ] ucptt.com