Wish List 0

Am2301 Capacitive Digital Temperature & Humidity Sensor

Rs. 257.00 Rs. 296.00

  • Product Code: SEN-TEMPHUM
  • SKU -
  • Availability: In Stock
  • Price in reward points: 4
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-AM2301 Capacitive Digital Temperature & Humidity Sensor sensor is one of the commonest from the range of DHT temperature sensors; and boasts a relatively high-temperature measurement accuracy of 0.5°C in 0.1°C steps with a relative humidity accuracy of ± 3%.
-It has only 3 wires, including power and ground, meaning only one digital pin is required to interface it to a microcontroller.
-For Arduino development platforms the sensor is very well supported by the DHT library available from the Arduino Playground website.
-AM2301 Capacitive Digital Temperature
-Example Arduino Sketch, Library, and Datasheet available on our support forum here.

Note: 
This package does not include the Arduino board.

Features:
-4-pin package.
-Ultra-low-power.
-No additional components.
-Excellent long-term stability.
-All calibration, digital output.
-Completely interchangeable.
-Long-distance signal transmission.
-Relative humidity and temperature measurement.

SPECIFICATIONS:
Model                               AM2301
Supply Voltage (V)                  3.3 ~ 5
Average Current Consumption (μA)   300
Humidity                            0 ~ 99.9 %RH
Precision                           3% RH
Output type                         Digital (1 wire)
Operating Temperature (℃)         -20 ~ +60
Cable Length (cm)                   20
Shipment Weight                     0.105 kg
Shipment Dimensions                 8 × 7 × 5 cm
OVERVIEW:
Model                              AM2301.
Supply voltage                     3.3 5.2 V DC.
Signal output form                 Digital signal output.
Temperature measurement range      -40 ~ +80 ºC.
Temperature measurement precision  ± 0.5ºC
Humidity range                     10%~90%RH.
Humidity measurement precision     ±3%RH.
₹ 399.00 (inc GST)
₹ 338.14 (+18% GST extra)

PACKAGE INCLUDES:

1 PCS x Am2301 Temperature And Humidity Sensor Capacitive Composite Measurement High Accuracy Module


//SOURCE CODE TAKEN FROM BELOW LINK

//http://arduinolearning.com/code/am2301-example.php

#include "DHT.h"

#define DHTPIN 2    // modify to the pin we connected

 

#define DHTTYPE DHT21   // AM2301 

 

DHT dht(DHTPIN, DHTTYPE);

 

void setup() 

{

 Serial.begin(9600); 

 Serial.println("DHTxx test!");

 dht.begin();

}

 

void loop() 

{

 float h = dht.readHumidity();

 float t = dht.readTemperature();

 // check if returns are valid, if they are NaN (not a number) then something went wrong!

 if (isnan(t) || isnan(h)) 

 {

   Serial.println("Failed to read from DHT");

 } 

 else 

 {

   Serial.print("Humidity: "); 

   Serial.print(h);

   Serial.print(" %\t");

   Serial.print("Temperature: "); 

   Serial.print(t);

   Serial.println(" *C");

   delay(2000);

 }

}

15 days

Write a review

Please login or register to review