Wish List 0

Dht22 Digital Temperature And Humidity Sensor Module Am2302

Rs. 109.00 Rs. 126.00

  • Product Code: SEN-TEMPHUM
  • SKU -
  • Availability: In Stock
  • Price in reward points: 3
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
DHT22/AM2302 Digital Temperature & Humidity Sensor is a premium quality Humidity & Temperature Sensor from Techtonics. Moglix is a well-known e-commerce platform for a qualitative range of Humidity & Temperature Sensor.
All DHT22/AM2302 Digital Temperature & Humidity Measurement Sensor, TECH1120 are manufactured by using quality assured material and advanced techniques, which make them up to the standard in this highly challenging field.
DHT22/AM2302 Digital Temperature & Humidity Sensor is a low-cost digital temperature and humidity sensor. It uses a capacitive humidity sensor and a thermistor to measure the surrounding air and spits out a digital signal on the data pin (no analog input pins needed).
Its fairly simple to use, but requires careful timing to grab data. The only real downside of this sensor is you can only get new data from it once every 2 seconds, so sensor readings can be up to 2 seconds old. Simply connect the first pin on the left to 3-5V power, the second pin to your data input pin and the rightmost pin to ground. Although it uses a single-wire to send data it is not Dallas One Wire compatible! If you want multiple sensors, each one must have its own data pin!
Simply connect the first pin on the left to 3-5V power, the second pin to your data input pin and the rightmost pin to ground. Although it uses a single-wire to send data it is not Dallas One Wire compatible! If you want multiple sensors, each one must have its own data pin!

Features:
-Type: AM2302.
-Ultra-Low Power.
-No Additional Components.
-Long-Distance Signal Transmission.
-All Calibration, Digital Output & Completely Interchangeable.
-Relative Humidity & Temperature Measurement.
-Humidity Measurement Precision: ±2-5% RH.
-Temperature Measurement Precision: ±0.5 deg C.
SPECIFICATIONS:
Model                           AM2302
Power supply                    3.3-5.5VDC
Operating range                 humidity 0-100%RH
Accuracy                        humidity ±2%RH (Max ±5%RH)
Humidity Measurement Precision  ±2-5% RH
Shipment Weight                 0.085 kg
Shipment Dimensions             8 × 6 × 4 cm

OVERVIEW:

-Ultra-Low Power.

-No Additional Components.

-Long Distance Signal Transmission.

-All Calibration, Digital Output & Completely Interchangeable.

-Relative Humidity & Temperature Measurement.

-Humidity Measurement Precision: ±2-5% RH.

-Temperature Measurement Precision: ±0.5 deg C.

PACKAGE INCLUDES:

1 PCS x Dht22 Digital Temperature And Humidity Sensor Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/mafzal/temperature-monitoring-with-dht22-arduino-15b013

/* How to use the DHT-22 sensor with Arduino uno

   Temperature and humidity sensor

*/


//Libraries

#include <DHT.h>;


//Constants

#define DHTPIN 7     // what pin we're connected to

#define DHTTYPE DHT22   // DHT 22  (AM2302)

DHT dht(DHTPIN, DHTTYPE); //// Initialize DHT sensor for normal 16mhz Arduino



//Variables

int chk;

float hum;  //Stores humidity value

float temp; //Stores temperature value


void setup()

{

  Serial.begin(9600);

  dht.begin();

}


void loop()

{

    delay(2000);

    //Read data and store it to variables hum and temp

    hum = dht.readHumidity();

    temp= dht.readTemperature();

    //Print temp and humidity values to serial monitor

    Serial.print("Humidity: ");

    Serial.print(hum);

    Serial.print(" %, Temp: ");

    Serial.print(temp);

    Serial.println(" Celsius");

    delay(10000); //Delay 2 sec.

}


   

15 days

Write a review

Please login or register to review