KS0430 Keyestudio DHT22 Temperature and Humidity Sensor: Difference between revisions
Keyestudio (talk | contribs) (Created page with " thumb|400px|right|Keyestudio DHT22 Temperature and Humidity Sensor <br> == Overview == This DHT22 digital temperature and humidity sensor is a compo...") |
Keyestudio (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[image: | [[image:Ks0340-1.png|thumb|400px|right|Keyestudio DHT22 Temperature and Humidity Sensor]] | ||
<br> | <br> | ||
Line 23: | Line 23: | ||
* Dimensions: 43mm * 26mm * 9mm | * Dimensions: 43mm * 26mm * 9mm | ||
* Weight: 5.9g | * Weight: 5.9g | ||
<br>[[File:Ks0340-2.png|500px|frameless|thumb]]<br> | |||
<br> | <br> | ||
== Hookup Guide== | == Hookup Guide== | ||
<br>[[File: | <br>[[File:Ks0340-3.png|600px|frameless|thumb]]<br> | ||
<br> | <br> | ||
== Source Code == | == Source Code == | ||
<span style=color:red> Before compiling the code, don’t forget to place the necessary DHT library into libraries directory of Arduino IDE. Or else, code upload will fail! </span><br> | <span style=color:red> Before compiling the code, don’t forget to place the necessary DHT library into libraries directory of Arduino IDE. Or else, code upload will fail! </span><br> | ||
Line 68: | Line 70: | ||
<br> | <br> | ||
== Test Result == | == Test Result == | ||
<br>[[File:Ks0340-4.png|500px|frameless|thumb]]<br> | |||
Hook up the sensor to main board and upload the source code. Power on, open the serial monitor and set the baud rate to 9600; you are able to see the current ambient temperature and humidity value. As shown below. | Hook up the sensor to main board and upload the source code. Power on, open the serial monitor and set the baud rate to 9600; you are able to see the current ambient temperature and humidity value. As shown below. | ||
<br>[[File: | <br>[[File:Ks0340-5.png|600px|frameless|thumb]]<br> | ||
Line 76: | Line 80: | ||
==Resource== | ==Resource== | ||
*'''Download all the relevant info.from the liink below:''' <br> | |||
https://fs.keyestudio.com/KS0430 | |||
<br> | <br> | ||
==Buy from == | ==Buy from == | ||
*['''Official Website'''] | *['''Official Website'''] | ||
*[ Shop on aliexpress ] | *[''' Shop on aliexpress '''] | ||
[[category:Sensor]] | [[category:Sensor]] |
Latest revision as of 12:29, 7 January 2021
Overview
This DHT22 digital temperature and humidity sensor is a composite Sensor which contains a calibrated digital signal output of the temperature and humidity.
The dedicated digital modules collection technology and the temperature and humidity sensing technology are applied to ensure that the product has high reliability and excellent long-term stability.
Qualities of excellent quality, ultra-fast response, strong anti-interference, and high cost performance make it a wide applied application or even the most demanding one.
The sensor comes with 2 fixed holes, very easy to mount on any other devices.
Applications: dehumidifier, testing and inspection equipment, consumer goods, automotive, automatic control, data loggers, weather stations, home appliances, humidity regulator, medical and other humidity measurement and control.
Specifications
- Operating voltage: DC 3.3V-5V
- Interface: 3PIN
- Output signal: single-bus digital signal
- Humidity measurement range: 0----100%RH
- Humidity measurement accuracy: ±2%RH
- Temperature measurement range: - 40℃ to 80℃
- Temperature measuring accuracy: ±0.5℃
- Dimensions: 43mm * 26mm * 9mm
- Weight: 5.9g
Hookup Guide
Source Code
Before compiling the code, don’t forget to place the necessary DHT library into libraries directory of Arduino IDE. Or else, code upload will fail!
You can click the link on how to use Arduino IDE:
https://wiki.keyestudio.com/How_to_Download_Arduino_IDE
#include "DHT.h" #define DHTPIN 3 // define the connection pin #define DHTTYPE DHT22 DHT dht(DHTPIN, DHTTYPE); void setup() { Serial.begin(9600); //set the baud rate Serial.println("DHTxx test!");//print the character and line wrap dht.begin(); } void loop() { float h = dht.readHumidity(); // calculate the humidity value float t = dht.readTemperature(); //calculate the temp.value if (isnan(t) || isnan(h)) { Serial.println("Failed to read from DHT");//show the contents and line wrap } else { Serial.print("Humidity: "); //print the humidity Serial.print(h); //print the humidity value Serial.print(" %\t");//print the content Serial.print("Temperature: "); //print the temperature Serial.print(t);//print the temperature value Serial.println(" *C");//print the temperature unit and line wrap } }
Test Result
Hook up the sensor to main board and upload the source code. Power on, open the serial monitor and set the baud rate to 9600; you are able to see the current ambient temperature and humidity value. As shown below.
Resource
- Download all the relevant info.from the liink below:
https://fs.keyestudio.com/KS0430
Buy from
- [Official Website]
- [ Shop on aliexpress ]