Presentation is loading. Please wait.

Presentation is loading. Please wait.

Arduino課程 DHT11溫濕感測 中部自造者基地-雲科大.

Similar presentations


Presentation on theme: "Arduino課程 DHT11溫濕感測 中部自造者基地-雲科大."— Presentation transcript:

1 Arduino課程 DHT11溫濕感測 中部自造者基地-雲科大

2 實驗目的 以 DHT11同時監測溫度與濕度。 中部自造者基地-雲科大

3 先備知識 DHT-11 能量測週遭空氣環境,將所量測到的溫、濕度資料拆解成為 數位訊號,再由 data pin腳將資料送出。 規格: 1、濕度測量範圍:20~90%RH; 2、濕度測量精度:±5%RH; 3、溫度測量範圍:0~50℃ 4、溫度測量精度:±2℃ 中部自造者基地-雲科大

4 實驗架設 接GND 5V S接A0 中部自造者基地-雲科大

5 副程式下載 中部自造者基地-雲科大

6 程式碼 #include <dht.h> #define dht_dpin A0 //定義訊號從 A0 進來 dht DHT; void setup(){ Serial.begin(9600); delay(300); //Let system settle Serial.println("Humidity and temperature\n\n"); delay(1000); //Wait rest of 1000ms recommended delay before } void loop(){ DHT.read11(dht_dpin); //去library裡面找DHT.read11 Serial.print("Humidity = "); Serial.print(DHT.humidity); Serial.print("% "); Serial.print("temperature = "); Serial.print(DHT.temperature); Serial.println("C "); delay(1500); 中部自造者基地-雲科大

7 中部自造者基地-雲科大


Download ppt "Arduino課程 DHT11溫濕感測 中部自造者基地-雲科大."

Similar presentations


Ads by Google