Temperature and humidity DHT22 (DHT22) [S063]
https://www.youtube.com/watch?v=bVhOLJMloc4
*GitHub : https://github.com/rdiot/rdiot-s063.git
* Specs
The DHT22 is a basic, 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 when using our library, 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 right most 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!
Compared to DHT11,this sensor is more precise, more accurate and works in a bigger range of temperature/humidity, but its larger and more expensive
Comes with a 4.7K - 10K resistor, which you will want to use as a pullup from the data pin to VCC.
Temperature
Resolution : 0.1°C
Accuracy : ±0.5℃
Measuring range : -40°C ~ 80°C
Humidity
Resolution : 0.1%RH
Accuracy : ±2%RH (25°C)
Measuring range : 0%RH ~ 99.9%RH
Operating voltage : 3.3V ~ 5.5 V
Recommended storage condition
Temperature : 10°C ~40°C
Humidity : 60%RH
* Content
- Connect
1 ----- 5V
2 ----- D2
3 ----- X (NC Not connected)
4 ----- GND
- DataSheet : http://www.waveshare.com/wiki/File:AM2302.pdf
- Source : http://www.waveshare.com/wiki/File:DHT22-Temperature-Humidity-Sensor-code.7z
- Key Code
#define DHTPIN 2
DHT dht(DHTPIN, DHT22);
switch(dht.read())
{
case DHT_OK:
lcd.setCursor(0,1);
lcd.print("temperature=" + (String)dht.temperature + "'C");
lcd.setCursor(0,2);
lcd.print("humidity=" + (String)dht.humidity + "% ");
break;
}
'2) Sensor > Temperature' 카테고리의 다른 글
Call server API for multiple sensor information [P002] (0) | 2017.05.24 |
---|---|
12V Thermostat Temperature Controller with NTC Sensor [S238] (0) | 2016.12.19 |
MAX6675 Module + K Type Thermocouple Thermocouple Sensor (MAX6675) [S080] (0) | 2016.09.07 |
Infrared Thermometer MLX90614 (GY-906) [S034] (0) | 2016.09.07 |
Temperature and humidity DHT11 sensor module (KY-015) [S008] (0) | 2016.09.03 |