My Account

Your Cart

Digital Temperature Humidity Sensor Module AM2301A

Digital Temperature Humidity Sensor Module AM2301A
Out Of Stock
Digital Temperature Humidity Sensor Module AM2301A
34.50RON
Ex Tax: 34.50RON
  • Stock: Out Of Stock
  • Model: T184.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.

Write a review

Note: HTML is not translated!
Rating
Bad Good

Category Products

BD176 BJT PNP TransistorThe BD176 Transistor BJT PNP TO-126 is a superior, dependable, and high-performance transistor, engineered for diverse applica..
1.84RON
Ex Tax:1.84RON
 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.68RON
Ex Tax:3.68RON
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.60RON
Ex Tax:4.60RON
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.70RON
Ex Tax:20.70RON
Add to Cart
0.1A 250V Glass Fuse 5x20 mm 5x20 glass fuses are small, cylindrical fuses used to protect electrical and electronic circuits from overcurrent co..
1.01RON
Ex Tax:1.01RON
Add to Cart
0.1F 5.5V Superfarad Capacitor Battery Type Super CapacitorThis capacitor is a battery-type capacitor that operates at voltages up to 5.5V. It is comm..
11.09RON
Ex Tax:11.09RON
Add to Cart

WhatsApp Chat

Hi Guest! Please click one of our representatives Below To Chat On WhatsApp.