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
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