Arduino OLED Thermometer and Hygrometer With DHT11 for Beginners

66,212

528

48

Introduction: Arduino OLED Thermometer and Hygrometer With DHT11 for Beginners

About: I am a dreamer, maker and an engineer making and sharing interesting projects here at Instructables. Follow me @ instagram: @the_gadget.boy

Hello ! I'm going to show you how to make an Arduino OLED thermometer and hygrometer* with DHT11.

The OLED we will use today is 1.3″ inch in size, features 128×64 pixels and uses the SPI Bus. On the next step you will find more useful information about the OLED tech and this display.

We will use the u8glib library to communicate with our display. This library has many available parameters with it you can display numbers, letters, bitmaps and other symbols on OLEDs and graphic LCDs also it works for E-ink displays.

---------------------------

* A hygrometer /haɪˈɡrɒmɨtər/ is an instrument used for measuring the moisture content in the atmosphere. - Wikipedia

Step 1: Info About the OLED Display and Tech

An organic light-emitting diode (OLED) is a light-emitting diode (LED) in which the emissive electroluminescent layer is a film of organic compound that emits light in response to an electric current. This layer of organic semiconductor is situated between two electrodes; typically, at least one of these electrodes is transparent. - Wikipedia

The one I use is produced by Waveshare. Its 1.3″ inch in size, features 128×64 pixels and uses the 4-wire Serial Peripheral Interface Bus. It is monochrome blue in color also it consumes 0.04 W of energy which is one tenth that is required to run traditional 16x2 LCD display.

The OLED could be modified (soldering required) to communicate with different Bus, like a I2C or a 3-wire SPI, by moving one of the two resistors which can be found on the back of the display board. They are marked with 0s, check the pic above.

Changing the Bus from a 4-wire SPI to a I2C or a 3-wire SPI:

I2C - move BS1 resistor on 1 but keep BS0 on 0 as it is.

3-wire SPI - BS1 must be 0 and BS0 on 1

Step 2: Info About DHT11

The DHT11 is a basic, ultra low-cost digital temperature and humidity sensor. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air, and spits out a digital signal on the data pin (no analog input pins needed). Its fairly simple to use, but requires careful timing to grab data. The only real downside of this sensor is you can only get new data from it once every 2 seconds, sensor readings can be up to 2 seconds old.

Features:

  • Small size, low cost
  • Easy to use 3 to 5V power and I/O
  • 2.5mA max current use during conversion (while requesting data)
  • Good for 20-80% humidity readings with 5% accuracy
  • Good for 0-50°C temperature readings ±2°C accuracy
  • No more than 1 Hz sampling rate (once every second)

Step 3: Gathering Materials

To make it we gonna need the following stuff:

  1. Arduino UNO board or similar
  2. OLED display (1.3inch; 128x64) or similar
  3. DHT11 - temperature and humidity sensor
  4. Breadboard
  5. Jumpers x 12 - to connect everything

Step 4: Connecting the Sensor and the OLED

Now take a look on the schematic above, plug in the display and the sensor into the breadboard. Then connect the negative and positive voltage pins of both DHT11 and the OLED to the ground and +5v pins of the Arduino UNO board with jumpers.

Then take one jumper and connect the output pin of the sensor to A0 of the Arduino board.

Connect the OLED pins: DIN to pin 13; CLK to pin 11; CS to pin 10; D/C to pin 9 and RES to pin 8 with the rest of the jumpers. 13, 11, 10, 9 and 8 are the SPI Bus of Arduino UNO they are also the ICSP connector under the microcontroller.

Once you connect them you can upload the code to the board (you can do that before connecting the sensor and the display).

Step 5: Upload the Code

This step is easy, just download one of the two .INO files, named Fahrenheit (measures in F) and Celsius (measures in C), and open it with the Arduino IDE then upload the code to the Arduino board.

If you don't like the current font you can change it simply by editing the code. You can find all supported fonts here.

If you don't have Arduino IDE click here to download it. Then install it.

Libraries you will need: DHT and u8glib download the libraries and then unzip them at /Program Files(x86)/Arduino/Libraries (default).

UPDATE: NOW WITH SUPPORT FOR SSD1306 128X32 AND 128X64 WITH SPI BUS. CODE FOR DUAL COLOR OLED (1/4 YELLOW, 3/4 BLUE, SSD1306) - DHT_DC_OLED_V1.26.16

Step 6: Congrats !!!

Now you have an Arduino OLED thermometer and hygrometer and you can measure the temperature in Fahrenheit or in Celsius and the moisture content of the air anywhere you want.

Bitcoin tips: 1Bfgrq4dQSuRHuTdk5jzZPtnMZLymDQ5dv

Featured comments:

"It's a nice beginners project to get started with OLEDs and temperature sensors". - MaterialBall

"Thanks for the share, very easy to follow instructions!" - Akin Yildiz

"Outstanding!!" - kath65

Indoor Gardening Contest 2015

Third Prize in the
Indoor Gardening Contest 2015

Tech Contest

Participated in the
Tech Contest

Make It Glow! Contest

Participated in the
Make It Glow! Contest

6 People Made This Project!

Recommendations

  • For the Home Contest

    For the Home Contest
  • Big and Small Contest

    Big and Small Contest
  • Make It Bridge

    Make It Bridge

48 Comments

0
gspak
gspak

3 years ago on Step 6

Instructions say "...connect to A0", code reads A5

1
Tstef
Tstef

5 years ago

Man, what is up with all these tutorials that connect DHT sensors to analog pins? They are digital sensors -- you even say so in the intro ("no analog pins required"). How are they even working?

1
HeinrichK1
HeinrichK1

6 years ago

Very nice instructable. I just want to add something small. If you only have one OLED display you can tie the CS pin of the display to ground (chip select and you only have one chip)

0
Konstantin Dimitrov
Konstantin Dimitrov

Reply 6 years ago

Thats a good idea I will put it in `ible !

0
mport1
mport1

6 years ago

swapping din and clk is the solution

0
mport1
mport1

6 years ago

thank you Konstantin, i tried to make the project with dh22, nothing happens after uploading the sketch, edited the sketch for dht22 already.. , verified pinouts , i use the same oled using 5v out..any ideas???

0
mport1
mport1

6 years ago

thank you Konstantin, i tried to make the project with dh22, nothing happens after uploading the sketch, edited the sketch for dht22 already.. , verified pinouts , i use the same oled using 5v out..any ideas???

0
Sarvasv Kulpati
Sarvasv Kulpati

7 years ago

Thanks for the AWESOME instructable, it was simple and super easy to follow. Although it might just have been a problem on my side, I wanted to point out that the code for celsius shows the input pin of the dht11 as A5, and not A0. Sorry if it was a problem from me ;D

0
Comatech
Comatech

7 years ago

Hi, i just tried use DHT22 with this scheme and sketch, and its not working, what modifications i need to make it work? Thanks ;)

0
Konstantin Dimitrov
Konstantin Dimitrov

Reply 7 years ago

Yes, open the sketch and replace DHT.read11(dht_apin); with DHT.read22(dht_apin);. It should be between line 29 and 35.

0
Comatech
Comatech

Reply 7 years ago

I has did it myself, and you writing next =) Funny! Thanks

0
Comatech
Comatech

7 years ago

Its sho 0 degrees and 1% humidity, i don't know maybe sensor is dead, but need to test it somehow =(

0
HelgiB
HelgiB

7 years ago

You got used a A5 pin in the sketch ;) but on scheme it's A0, anyway it's working nice, i like it.

0
Konstantin Dimitrov
Konstantin Dimitrov

Reply 7 years ago

My bad ! :) Thanks for the notice I will fix it later today.

0
maroelawerner
maroelawerner

7 years ago

Nice little project. Why don't you use the DHT22 instead of the cheaper DHT11? The DHT11 has a very restricted humidity range and is not so accurate. As soon as the weather starts becoming rainy, you will have exceeded the DHT11's range of 20 - 80% humidity. The DHT22 goes from 0 - 100% humidity (non-condensing). In my opinion the DHT22 should be used for most environments.

0
Konstantin Dimitrov
Konstantin Dimitrov

Reply 7 years ago

Yes DHT22 is better than DHT11 but also much expensive and I couldn't affort one. But I think that the code should work with DHT22 without a problem. Thank you !

0
terrible tinkerer
terrible tinkerer

7 years ago

Dear Mr KD, If I could bring your attn to Step 4. You say download the INO file, open it with Arduino IDE then upload the code to the Arduino board. I believe Arduino needs to verify the file first before uploading to Arduino board. This happens to be where I'm stuck as each time I try to verify Arduino highlights the 4th line down "dht DHT:" and states 'dht' does not name a type. Am I missing something?

TT