My Account

Your Cart

Digital Temperature Humidity Sensor Module AM2301A

Digital Temperature Humidity Sensor Module AM2301A
Digital Temperature Humidity Sensor Module AM2301A
34.58RON
  • Stock: In Stock
  • Model: SNC004.AM2301A
Your orders placed until 16:30 on weekdays are shipped on the same day.

AM2301A Digital Temperature Humidity Sensor Module

The AM2301A, also referred to as DHT21, is a digital sensor designed for measuring temperature and humidity. The following details provide an overview of the sensor's specifications and functionality:
 

Key Features of the AM2301A Sensor:

 

  1. Temperature Measurement:
    • Accuracy: ±0.3°C
    • Measurement Range: -40 to 125°C
    • Resolution: 0.1°C
  2. Humidity Measurement:
    • Accuracy: ±2% RH
    • Measurement Range: 0 to 100% RH
    • Resolution: 0.1% RH
  3. Power Supply: 3.3V to 5.5V DC
  4. Output: Digital signal (single-wire communication protocol)
  5. Dimensions: Typically around 15mm x 12mm x 5.5mm
  6. Response Time: Typically less than 1 second
  7. Integration: Easily interfaces with microcontrollers like Arduino, Raspberry Pi, etc.


Feature Descriptions:

The AM2301A offers ±0.3°C temperature precision and ±2% RH humidity precision, making it a reliable choice for accurate readings. It operates over a broad temperature range from -40 to 125°C, providing versatility in various use cases. The sensor is capable of measuring humidity from 0% to 100% RH with high precision and resolution. It supports a wide range of power supply voltages, ensuring compatibility with various systems and applications. The sensor responds quickly to changes, typically in less than 1 second, making it ideal for applications that require fast data collection.


 

Applications:

The AM2301A sensor is frequently used in weather monitoring, HVAC systems, industrial automation, and consumer electronics to monitor temperature and humidity levels. It delivers reliable performance with high precision and low power consumption, making it suitable for a wide range of applications.
 

Example Arduino Code:


The following is a basic example of how to use the AM2301A (DHT21) sensor with an Arduino:

        #include 
        #define DHTPIN 2     // Digital pin connected to the sensor
        #define DHTTYPE DHT21   // AM2301 (DHT21) sensor type
        DHT dht(DHTPIN, DHTTYPE);
        void setup() {
            Serial.begin(9600);
            dht.begin();
        }
        void loop() {
            delay(2000);  // Delay between readings
            float temperature = dht.readTemperature();  // Read temperature in Celsius
            float humidity = dht.readHumidity();        // Read humidity
            // Check if any reads failed and exit early (to try again)
            if (isnan(temperature) || isnan(humidity)) {
                Serial.println("Failed to read from sensor!");
                return;
            }
            Serial.print("Temperature: ");
            Serial.print(temperature);
            Serial.print(" °C	Humidity: ");
            Serial.print(humidity);
            Serial.println(" %");
        }


    
This code initializes the DHT library, reads temperature and humidity data from the AM2301A sensor connected to pin 2, and displays the values on the Serial Monitor every 2 seconds. Adjust the DHTPIN and DHTTYPE as needed based on your setup.

There are no reviews for this product.

Write a review

Note: HTML is not translated!
Bad           Good

Category Products

10mm LDR - A Light-Sensitive ResistorThe LDR, an acronym for Light Dependent Resistor, is a type of photoresistor. Photoresistors are specialized elec..
2.90RON
Add to Cart
LDR-Light Sensitive Resistor 5mm PhotoresistorThe Light Dependent Resistor, abbreviated as LDR, is a type of photoresistor. A photoresistor is a class..
0.28RON
Add to Cart
DHT11 Digital Temperature Humidity SensorThe DHT11 is a cost-effective digital sensor that measures both temperature and humidity. It is widely used i..
5.07RON
Add to Cart
DHT21 AM2301 Digital Temperature Humidity Sensor ModuleThe DHT21, also known as AM2301, is a trusted digital sensor for measuring temperature and humi..
30.43RON
Add to Cart
DHT22 AM2302: A High-Precision Digital Temperature and Humidity Sensor ModuleThe DHT22, alternatively known as the AM2302, is a highly precise digital..
28.58RON
Add to Cart
1kg Load Cell Weight Sensor for Electronic ScalesOur 1kg Load Cell Weight Sensor is a top-notch, precision-based measuring instrument, specifically en..
12.59RON
Add to Cart
The product is currently Out-of-Stock. Enter your email address below and we will notify you as soon as the product is available.
Email

WhatsApp Chat

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