Skip to main content

Project - 5 :- Temperature and Humidity Measurement By Using Arduino


             PROJECT – Temperature and Humidity Measurement

In this tutorial you will learn how to use a DHT11 with Arduino and measure the temperature and humidity.  

                                                          STEP – 1: Components

Components Required:-
1.    Arduino Uno.
2.    Breadboard.
3.    DHT11 Sensor.
4.    Wires.                     

                                         STEP – 2: Circuit

Temperature and Humidity Measurement By Using Arduino

The connections are pretty easy, see the image above with the breadboard circuit 
schematic.

                              

                                     STEP – 3: Add Library

Before you can use the DHT11 on the Arduino, you’ll need to install the DHTLib library. It has all the functions needed to get the humidity and temperature readings from the sensor. It’s easy to install, open up the Arduino IDE. Then go to Sketch>Include Library>Add .ZIP Library and select the DHTLib.zip file.

                                         STEP – 4: Upload Code

#include <dht11.h>
#define DHT11PIN 4

dht11 DHT11;

void setup()
{
  Serial.begin(9600);

}

void loop()
{
  Serial.println();

  int chk = DHT11.read(DHT11PIN);

  Serial.print("Humidity (%): ");
  Serial.println((float)DHT11.humidity, 2);

  Serial.print("Temperature (C): ");
  Serial.println((float)DHT11.temperature, 2);

  delay(2000);
} 

       /* Copy above Code and Paste in Your Arduino Sketch */

                                    Step 5: Well Done!


Temperature and Humidity Measurement Output

You have successfully completed one more Arduino Project and you learned how to use a DHT11 with Arduino and also learned how to measure temperature and humidity.

               THANKYOU!



Comments

Popular posts from this blog

Project - 7 :- Clap Switch By Using Arduino

                                    PROJECT – CLAP SWITCH In this tutorial you will learn how to use a Sound Sensor with Arduino and glowing a LED and beeping a Buzzer by Clapping.                                                       STEP – 1: Components Components Required:- 1.     Arduino Uno. 2.     Breadboard. 3.     Sound Sensor. 4.     LED 5.     Buzzer 6.     Wires                   ...

Project - 4 :- Gas and Smoke Detector By Using Arduino

                          PROJECT – Gas and Smoke Detector In this tutorial you will learn how to use a Gas Sensor with Arduino and detect the Flammable gas or smoke.                                                                          STEP – 1: Components Components Required:- 1.     Arduino Uno. 2.     Breadboard. 3.     Gas Sensor. 4.     LED. 5.     Buzzer. 6.     Wires.                                       ...

Project - 1 :- Simple LED Blinking By Using Arduino

                            PROJECT – Simple LED  Blinking In this tutorial we will learn how to use an Normal LED with Arduino and create a simple LED blinking project.                 STEP – 1 : Components Components Required:- 1 .    Arduino Uno 2.    Breadboard 3. Normal  LED 4. 1 X  330Ohm resistors. 5.  Wires STEP – 2 : Circuit The connections are pretty easy, see the image above with the breadboard circuit  schematic.                                                                   STEP – 3 : Code /* Simple LED Blinking Project by using Arduino */ const int LED_PIN = 13; void s...