Arduino Based Temperature Controlled Fan Using DHT11 Sensor

Controlling temperature is very essential in many places such as smart houses, server rooms, and various types of industries where cooling is essential at all times. So this Arduino based temperature controlled fan can be very useful for understanding the basic principle, of how can we operate and maintain the temperature at our home. We can use this project anywhere as a portable device where the fan changes speed with the change in temperature.

In this project, I am going with a very common DHT11 temperature and humidity sensor for better results. This project can also be done in other simple ways as well using a thermistor or other temperature sensors like LM35, DS18B20 etc. But thermistor needs physical contact with hot surfaces which is not accurate in some cases and contactless sensors are costly. While DHT11 is a cost-effective sensor and also a minimal contactless sensor.

With this device, we can be able to change the fan speed in our home or any place according to the room temperature. It also displays the real-time temperature and the changes of fan speed on a 16×2 LCD display. We are using here an Arduino, a 16×2 LCD display, a DHT11 sensor module, and a DC fan.

Must Read Temperature Controlled DC Fan Without Any Microcontroller

Project

Arduino Based Temperature Controlled Fan
Arduino Based Temperature Controlled Fan

Circuit Diagram

Arduino Based Temperature Controlled Fan Circuit Diagram
Arduino Based Temperature Controlled Fan Circuit Diagram

Components Required

  • Arduino
  • DHT11 Temperature & Humidity Sensor
  • 16×2 LCD Display
  • 2N2222 Transistor
  • 1KΩ Resistor
  • 12 Volt DC Fan
  • Breadboard
  • 12 Volt Power Supply
  • Wires

Working Principle of Arduino Based Temperature Controlled Fan

This project has three different parts. In the first part, the DHT11 sensor senses the surrounding temperature. In the second part, the microcontroller reads the input data from the DHT11 sensor and converts that data to a suitable Celsius value and drives the speed of the dc fan using a PWM signal. And the third one includes the display part where the 16×2 LCD display shows the real-time temperature and the speed of the dc fan.

A detailed demo of the DHT11 temperature and humidity measuring system where you will find the working principle of the DHT11 sensor.

The Analog value is then applied to the Analog to Digital converter pin of the Arduino. After that, the Analog value will be converted into a digital value using successive approximation methods. When the temperature value crosses the threshold value, Arduino sends a command signal to the motor driver using PWM output to switch on the dc fan.

We have created a PWM signal at the PWM pin of the Arduino board and applied it at the base terminal of the 2N2222 NPN transistor. Then transistor creates a voltage according to the PWM input given.

What is PWM Signal?

Pulse Width Modulation (PWM) or Pulse Duration Modulation (PDM) is a technique for reducing the average power delivered by an electrical signal. The average value of voltage or current fed to the load is controlled by turning the switch between supply and load on and off at a fast rate. It is basically a square wave which operates as a switch constantly on and off. It is widely used to control the speed of a DC motor and dimmable light bulb.

Working Value of DC Fan According to Temperature Value

TempPWM ValueSpeed
<2600
265120%
2710240%
2815360%
2920480%
>29255100%

Applications of Arduino Based Temperature Controlled Fan

  • This device is useful for home automation systems where temperature maintenance is essential with automated technic.
  • Can be used in a CPU cooling system to reduce extra energy consumption.

Arduino Code

2 thoughts on “Arduino Based Temperature Controlled Fan Using DHT11 Sensor”

  1. Hi,
    I think there is a mistake in line 65.
    I think it should have been “else if(t==27)” and not “else if(t==20)”.

    Best regards,
    Avi Salto

Leave a Comment