Home ArduinoArduino Tutorials Arduino and DHT11 sensor example

Arduino and DHT11 sensor example

In this example we will show a basic example of connecting a DHT11 Temperature and Humidity Sensor to your Arduino. This is a very nice little, low cost sensor which requires only a pull up resistor to VDD. This can easily be constructed on a mini bread board and then joined up to your Arduino. using some connecting cables

I wont go into the technical details of the DHT11, there is a link at the bottom to a PDF datasheet which explains all you need to know.

arduino and dht11 assembled

arduino and dht11 assembled

Schematic

Arduino and DHT11 schematic

Arduino and DHT11 schematic

Connections

Here is a fritzing breadboard layout

Arduino and DHT11 connections

Arduino and DHT11 connections

Code

You will need the DHT11 library from the DHT library

Download, extract and copy this to your Arduino libraries folder location. This is a simple example which outputs the humidity and temperature, place your fingers on the DHT11 and you will see the readings fluctuate

 

#include <dht11.h>

dht11 DHT;
//Pin 4 of Arduino to Data of DHT11
#define DHT11_PIN 4

void setup()
{
Serial.begin(9600);
int check;
Serial.print(“DHT11 STATUS – \t”);
check = DHT.read(DHT11_PIN);
//check status
switch (check)
{
case DHTLIB_OK:
Serial.print(“OK\n”);
break;
case DHTLIB_ERROR_CHECKSUM:
Serial.print(“Checksum error\n”);
break;
case DHTLIB_ERROR_TIMEOUT:
Serial.print(“Timeout error\n”);
break;
default:
Serial.print(“Unknown error\n”);
break;
}
}

void loop()
{

//humidity and temperature output
Serial.print(“Humidity is “);
Serial.print(DHT.humidity,1);
Serial.print(“\n”);
Serial.println(“Temperature is “);
Serial.println(DHT.temperature,1);

delay(1000);
}

Output

Upload the sketch and open the Serial Monitor window

arduino and dht11 serial output

arduino and dht11 serial output

Parts List

Label	Part Type
DHT1	DHT11 Humitidy and Temperature Sensor	
Part1	Arduino Uno (Rev3)
R1	4.7k Ω

Links

Again varied pricing for the DHT11 Single Digital Output Temperature, I’ve seen 10 for about $12 on Amazon US and offers of about £1.80 a piece on Amazon UK

Shop around as ususal, ebay has some good prices as well

DHT11 Humitidy and Temperature Sensor from Amazon UK

DHT11 Humitidy and Temperature Sensor from Amazon US

 

DHT11 Datasheet in PDF format

You may also like