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

 74LS83 Carrier and Splicer Integrated Circuit
Out of Stock
74LS83 Carrier and Splicer Integrated Circuit The 74LS83 DIP-16 Carrier and Splicer Integrated Circuit is a robust, high-functioning component specifi..
3.04RON
Add to Cart
 BD176 BJT PNP Transistor
🔥 Bestseller
BD176 BJT PNP TransistorThe BD176 Transistor BJT PNP TO-126 is a superior, dependable, and high-performance transistor, engineered for diverse applica..
1.84RON
 BS250 P-Channel Mosfet
🔥 Bestseller
 BS250 P-Channel MosfetThe BS250 P Channel Mosfet TO-92 is a semiconductor device of superior quality, designed to deliver high performance and reliab..
3.69RON
HEF4077B Gates Quadruple Exclusive-NOR GateThe HEF4077B Gates Quadruple Exclusive-NOR Gate is a state-of-the-art, high-performance logic gate that gua..
4.61RON
Add to Cart
LNK304GN SMD-8B AC/DC Converter ICThe LNK304GN SMD-8B stands as a superior AC/DC Converter IC, engineered to deliver efficient and dependable power co..
4.61RON
Add to Cart
0.0047uF 250VAC GPF - MKP X2 Polyester Film CapacitorPresenting the 0.0047 µF 250V GPF - MKP X2 capacitor, a component with unique attributes, making ..
20.75RON
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.