Ks0034 keyestudio DHT11 Temperature and Humidity Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
<br>
<br>
==Sample Code ==
==Sample Code ==
Please download the [https://github.com/RobTillaart/Arduino/tree/master/libraries/DHTlib DHT11Lib] firstly.Or to see [http://playground.arduino.cc/Main/DHTLib the website]
Please download the [https://github.com/RobTillaart/Arduino/tree/master/libraries/DHTlib DHT11Lib] firstly.Or to see [http://playground.arduino.cc/Main/DHTLib the website] <br>
 
<span style=color:red> '''Note:''' before compiling the code, do remember to place the library into libraries directory of Arduino IDE. Otherwise, compiling will fail. </span><br>
<span style=color:red> '''Note:''' before compiling the code, do remember to place the library into libraries directory of Arduino IDE. Otherwise, compiling will fail. </span><br>


Line 67: Line 68:
}
}
</pre>
</pre>
<br>
== Result ==
Wire it up well and upload the above code to UNO board.<br>
<br>[[File:Ks0349-40-2.png|800px|frameless|thumb]]<br>
Then open the serial monitor and set the baud rate as 9600, finally you will see the current temperature and humidity value.
<br>[[File:Ks0349-40-3.png|600px|frameless|thumb]]<br>


<br>
<br>
Line 86: Line 95:
*[https://www.keyestudio.com/free-shipping-keyestudio-dht11-temperature-humidity-moisture-sensor-detection-module-for-arduino-p0374-p0374.html    '''Official Website''']
*[https://www.keyestudio.com/free-shipping-keyestudio-dht11-temperature-humidity-moisture-sensor-detection-module-for-arduino-p0374-p0374.html    '''Official Website''']


*[https://www.aliexpress.com/store/product/Free-shipping-DHT11-temperature-and-humidity-sensor/1452162_2051330134.html?spm=2114.12010612.8148356.5.75291aeewF4DNA    Shop on aliexpress]
*[https://www.aliexpress.com/store/product/Free-shipping-DHT11-temperature-and-humidity-sensor/1452162_2051330134.html?spm=2114.12010612.8148356.5.75291aeewF4DNA    '''Shop on aliexpress''']






[[Category: Sensor]]
[[Category: Sensor]]

Revision as of 09:55, 15 April 2019


Introduction

This DHT11 Temperature and Humidity Sensor features calibrated digital signal output with the temperature and humidity sensor complex.
Its technology ensures high reliability and excellent long-term stability. A high-performance 8-bit microcontroller is connected.
This sensor includes a resistive element and a sense of wet NTC temperature measuring devices. It has excellent quality, fast response, anti-interference ability and high cost performance advantages.
Each DHT11 sensor features extremely accurate calibration data of humidity calibration chamber. The calibration coefficients stored in the OTP program memory, internal sensors detect signals in the process, and we should call these calibration coefficients.
The single-wire serial interface system is integrated to make it quick and easy. Qualities of small size, low power, and 20-meter signal transmission distance make it a wide applied application or even the most demanding one. Convenient connection, special packages can be provided according to users’ need.
thumb


Specification

  • Supply Voltage: +5 V
  • Temperature Range: 0-50 °C error of ± 2 °C
  • Humidity: 20-90% RH ± 5% RH error
  • Interface: Digital


Connection Diagram


thumb


Sample Code

Please download the DHT11Lib firstly.Or to see the website

Note: before compiling the code, do remember to place the library into libraries directory of Arduino IDE. Otherwise, compiling will fail.

#include <dht11.h>
dht11 DHT;
#define DHT11_PIN 4
  
void setup(){
  Serial.begin(9600);
  Serial.println("DHT TEST PROGRAM ");
  Serial.print("LIBRARY VERSION: ");
  Serial.println(DHT11LIB_VERSION);
  Serial.println();
  Serial.println("Type,\tstatus,\tHumidity (%),\tTemperature (C)");
}
  
void loop(){
  int chk;
  Serial.print("DHT11, \t");
  chk = DHT.read(DHT11_PIN);    // READ DATA
  switch (chk){
    case DHTLIB_OK:  
                Serial.print("OK,\t"); 
                break;

case DHTLIB_ERROR_CHECKSUM: 

                Serial.print("Checksum error,\t"); 
                break;
    case DHTLIB_ERROR_TIMEOUT: 
                Serial.print("Time out error,\t"); 
                break;
    default: 
                Serial.print("Unknown error,\t"); 
                break;
  }
 // DISPLAT DATA
  Serial.print(DHT.humidity,1);
  Serial.print(",\t");
  Serial.println(DHT.temperature,1);
  
  delay(1000);
}


Result

Wire it up well and upload the above code to UNO board.

thumb

Then open the serial monitor and set the baud rate as 9600, finally you will see the current temperature and humidity value.
thumb


Resources

  • Video

http://video.keyestudio.com/ks0034/

  • PDF

https://drive.google.com/open?id=1WXBksGm64DvWtC_QFffcLs_g0p1YiM9L

  • Libraries

https://drive.google.com/open?id=1_P_JRmI_mZwg0hAqriFI21-oUjN5dgcH



Buy from