DHT11 Temperature and Humidity sensor
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhIeB7NaR3kTq2vnrsWFk6Wpg3M0vJ3VfmofcvqVRZbsjShITiLfZDm0em1-PpKZ2I6GxhTH8zHzYUAkoEP_BnLOyCw92tEf_4ONmNfFNWa2gNJ6n_lRsc_Gm_3tqIEAQmBC1LNNp04cIXc/w507-h285/Thumbnail.jpg)
DHT11 Temperature and Humidity sensor Here is the link of the video This is the Circut Diagram This is the code for the project #include "dht.h" #define dht_apin A0 dht DHT; void setup(){ Serial.begin(9600); delay(500);//Delay to let system boot Serial.println("Humidity and Temperature scale"); delay(1000); } void loop(){ DHT.read11(dht_apin); Serial.print("Current humidity = "); Serial.print(DHT.humidity); Serial.print("% "); Serial.print("temperature = "); Serial.print(DHT.temperature); Serial.println("C "); delay(5000); } Thank you for watching the video and the visiting this blog . if you have any quarries kindly type it in the comments Thank you