CATEGORIES

My Account

CATEGORIES
Your Cart

DHT22 AM2302 Digital Temperature Humidity Sensor Module

DHT22 AM2302 Digital Temperature Humidity Sensor Module
DHT22 AM2302 Digital Temperature Humidity Sensor Module
Orders placed before 16:30 on weekdays are sent on the same day. Free shipping over 150 RON.
30.44ron
100 or more 24.21ron
500 or more 19.20ron
1000 or more 16.60ron
  • Stock: In Stock
  • Model: SNC002.DHT22

DHT22 AM2302 Digital Temperature Humidity Sensor Module

 

The DHT22, also known as the AM2302, is a high-accuracy digital temperature and humidity sensor. It is an upgraded version of the DHT11 and provides better accuracy and a wider measurement range. Here's a detailed overview of the DHT22 (AM2302) sensor:


General Information:

The DHT22 is designed to measure both temperature and humidity and output the data digitally. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air and provides a digital signal on the data pin.


Features:
 

  1. Temperature Range: -40 to +80°C with an accuracy of ±0.5°C.
  2. Humidity Range: 0 to 100% RH with an accuracy of ±2-5% RH.
  3. Resolution: 0.1 for both temperature and humidity.
  4. Power Supply: 3.3V to 6V.
  5. Low Power Consumption: Ideal for battery-powered applications.
  6. Digital Output: Single-wire communication protocol.
  7. Response Time: Typically less than 2 seconds.
  8. Long-Term Stability: Good long-term stability.

 


Pin Configuration:


The DHT22 sensor typically has four pins, but often only three are used:

  • VCC: Power supply (3.3V to 6V).
  • GND: Ground.
  • DATA: Data pin for digital signal output.
  • NC: Not connected (optional).


Applications:


  • Weather Stations: For measuring ambient temperature and humidity.
  • HVAC Systems: For monitoring and controlling heating, ventilation, and air conditioning systems.
  • Home Automation: For environmental monitoring.
  • Agriculture: To monitor greenhouse conditions.
  • Industrial Applications: For monitoring environmental conditions in factories and warehouses.

 

Wiring:


To connect the DHT22 to an Arduino:

  1. Connect the VCC pin of the DHT22 to the 5V pin of the Arduino.
  2. Connect the GND pin of the DHT22 to the GND pin of the Arduino.
  3. Connect the DATA pin of the DHT22 to a digital pin (e.g., pin 2) on the Arduino.
  4. A pull-up resistor (4.7kΩ to 10kΩ) is required between the VCC and DATA pins.

 

Example Code:

To use the DHT22 with an Arduino, you can use the DHT library. First, install the DHT library by Adafruit through the Library Manager in the Arduino IDE.


#include "DHT.h"

// Define the type of sensor and the pin it's connected to
#define DHTTYPE DHT22   // DHT 22 (AM2302)
#define DHTPIN 2        // Digital pin 2

DHT dht(DHTPIN, DHTTYPE);

void setup() {
  Serial.begin(9600);
  Serial.println("DHT22 (AM2302) test!");

  dht.begin();
}

void loop() {
  // Wait a few seconds between measurements
  delay(2000);

  // Reading temperature and humidity values
  float humidity = dht.readHumidity();
  float temperature = dht.readTemperature();

  // Check if any reads failed and exit early (to try again).
  if (isnan(humidity) || isnan(temperature)) {
    Serial.println("Failed to read from DHT sensor!");
    return;
  }

  // Print the results
  Serial.print("Humidity: ");
  Serial.print(humidity);
  Serial.print(" %\t");
  Serial.print("Temperature: ");
  Serial.print(temperature);
  Serial.println(" *C");
}


Calibration and Usage Tips:
 

  1. Ensure the sensor is placed in an area with good airflow for accurate readings.
  2. Avoid placing the sensor in direct sunlight or near heat sources to prevent false readings.
  3. Periodically check and recalibrate the sensor if used in critical applications.

The DHT22 (AM2302) is a reliable and accurate sensor suitable for various applications requiring precise temperature and humidity measurements. It is favored for its accuracy, stability, and ease of integration into projects.

Your orders placed before 16:30 on weekdays are dispatched the same day.

There are no reviews for this product.

Write a review

Note: HTML is not translated!
Bad           Good

Category Products

0.0047uF 250VAC GPF - MKP X2 Polypropylene Film Capacitor  The 0.0047 µF 250V GPF - MKP X2 capacitor has specific characteristics and is sui..
22.10ron
Add to Cart
Electrolytic CapacitorElectrolytic capacitors are common components used in various electronic applications for tasks such as storing electrical energ..
0.69ron
Add to Cart
Electrolytic CapacitorElectrolytic capacitors are common components used in various electronic applications for tasks such as storing electrical energ..
0.20ron
Add to Cart
0.33 uF 250V Polyester Capacitor
Out of Stock
0.33 uF 250V Polyester CapacitorOur 250V polyester capacitors are designed for a variety of electronic applications, providing reliable performance an..
0.49ron
Out of Stock
0.47 uF 250V Polyester CapacitorOur 250V polyester capacitors are designed for a variety of electronic applications, providing reliable performance an..
0.74ron
Add to Cart
Electrolytic CapacitorElectrolytic capacitors are common components used in various electronic applications for tasks such as storing electrical energ..
0.20ron
Add to Cart

WhatsApp Chat

We are currently out of business hours, you can send a message from the contact section for support.