Lesson 35-2: Using the HTU21D Temperature Sensor Custom Code

Lesson 35-2: Using the HTU21D Temperature Sensor Custom Code

In this tutorial, we will explore how to use the HTU21D temperature sensor with Arduino to measure temperature and humidity. The HTU21D is a reliable, low-power sensor that communicates over I2C, making it easy to integrate into your projects. By the end of this lesson, you will have a working custom code that reads temperature in Celsius, Fahrenheit, and Kelvin, as well as relative humidity.

HTU21D module

Before we dive into the wiring and code, it's essential to understand the components involved. The HTU21D sensor requires minimal connections: power, ground, and two I2C wires for data transfer. This simplicity makes it an excellent choice for various applications, from weather stations to smart home devices. For a visual guide, refer to the video at timestamp 03:45.

Hardware Explained

The primary component in this project is the HTU21D sensor, which measures temperature and humidity. This sensor can operate on voltages from 1.5V to 3.6V, making it versatile for different applications. It provides high-resolution readings, with temperature measurements ranging from -40°C to +125°C and humidity readings with a resolution of 0.04%.

Additionally, the sensor uses I2C communication, which requires two pins: SDA (data line) and SCL (clock line). This allows for easy integration with Arduino and other microcontrollers without the need for complex wiring. The Adafruit library simplifies interaction with the sensor, handling data retrieval and communication protocols seamlessly.

Datasheet Details

Manufacturer TE Connectivity
Part number HTU21D-F
Logic/IO voltage 1.5 – 3.6 V
Supply voltage 3.3 V
Current consumption (idle) 0.02 µA (typ.)
Current consumption (active) 450 µA (typ.)
Temperature range -40 to +125 °C
Humidity range 0 to 100 %RH
Resolution 0.04 %RH; 0.01 °C
Package 6-pin DFN

 

  • Ensure correct power supply to avoid sensor damage.
  • Use pull-up resistors on SDA and SCL lines if not integrated.
  • Keep sensor connections short to minimize noise.
  • Monitor the voltage during operation to maintain stability.
  • Consider using a capacitor for decoupling near the power pins.

Wiring Instructions

Arduino wiring for HTU21DF light intesity sensor
Arduino wiring for HTU21DF light intesity sensor

To wire the HTU21D temperature sensor, start by connecting the power and ground. Connect the left pin of the sensor to a 3.3V source, ensuring it can handle the required voltage. The second pin, typically marked in red, should go to ground.

Next, connect the SDA pin of the sensor to pin A4 on the Arduino, which serves as the data line for I2C communication. Then, connect the SCL pin to pin A5, which acts as the clock line. Make sure these connections are secure, as loose wires can lead to intermittent readings or failure to communicate with the sensor.

Code Examples & Walkthrough

In the code, we begin by including the necessary libraries and initializing the sensor. The line Adafruit_HTU21DF htu = Adafruit_HTU21DF(); creates an instance of the sensor class. In the setup() function, we start the serial communication and check if the sensor is connected properly.

void setup() {
  Serial.begin(9600);
  if (!htu.begin()) {
    Serial.println("Couldn't find sensor!");
    while (1);
  }
}

This snippet checks if the sensor is functioning correctly. If not, it prints an error message and halts the program. In the loop() function, we read the temperature and humidity values continuously.

void loop() {
    Serial.print(getHTU('C'));
    Serial.print("C");
    Serial.print(getHTU('H'));
    Serial.println("%");
    delay(1000);
}

Here, the function getHTU() is called with different parameters to retrieve temperature in Celsius and humidity. The delay ensures the readings are taken every second, giving a smooth output on the serial monitor. The full code is available for reference below the article.

Demonstration / What to Expect

Once everything is wired correctly and the code is uploaded, you should see temperature and humidity readings printed in the serial monitor. The temperature will be displayed in Celsius, followed by the corresponding humidity percentage. If you apply heat to the sensor, you should observe the temperature rise accordingly (in video at 10:15).

Be cautious of the sensor's limits; if the temperature exceeds 125°C, it may return an incorrect reading or display zero. Always ensure that your connections are secure and that the sensor is powered correctly to avoid any issues during operation.

Video Timestamps

  • 00:00 Introduction
  • 03:45 Wiring the Sensor
  • 05:30 Code Walkthrough
  • 10:15 Demonstration
  • 12:00 Conclusion

Images

Arduino wiring for HTU21DF light intesity sensor
Arduino wiring for HTU21DF light intesity sensor
HTU21D module
HTU21D module
HTU21D module-back
HTU21D module-back
513-Lesson 35: Using HTU21D Temperature Sensor | Arduino Step-by-Step Course
Language: C++
Copied!

Things you might need

Files📁

Datasheet (pdf)