Description
DHT22 is a digital temperature and humidity sensor. Output to a digital pin. The DHT22 is more accurate and has a larger range than the DHT11.
DHT22 specifications:
– Works on: 3.3 – 6V.
– Temperature range: -40 – +80 ºC.
– Temperature accuracy: ±0,5 ºC.
– Humidity range: 0-100% RH.
– Humidity accuracy: ±2,0% RH.
– Response time: < 3 sec.
Arduino code example:
DHT Library
#include <DHT.h>
DHT dht;
void setup()
{
Serial.begin(9600);
Serial.println();
Serial.println("StatustHumidity (%)tTemperature (C)t(F)");
dht.setup(2); // data pin 2
}
void loop()
{
delay(dht.getMinimumSamplingPeriod());
Serial.print(dht.getStatusString());
Serial.print("t");
Serial.print(dht.getHumidity(), 1);
Serial.print("tt");
Serial.print(dht.getTemperature(), 1);
Serial.print("tt");
Serial.println(dht.toFahrenheit(dht.getTemperature()), 1);
}
Only logged in customers who have purchased this product may leave a review.
Shipping within the Netherlands
This product will be delivered via PostNL letter post in a bubble envelope.- €3.45 shipping costs for orders under €25.
- €2.95 shipping costs for orders between €25 - €45.
- Orders above € 45,- will be
free of charge sent by PostNL letter post.
Ordered before 16:30 PM on workdays, shipped the same day!
Click here for costs outside the Netherlands.
Reviews
There are no reviews yet.