Ks0268 keyestudio SHT10 Digital Temperature Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
==Introduction==
==Introduction==
Keyestudio SHT10 digital temperature sensor is a temperature and humidity composite sensor containing digital signal outputs calibration. It uses patented micromachining technology (CMOSens®) in the process of industrial COMS, which ensure that the product has high reliability and excellent long-term stability. Sensor has full scale calibration and two digital interface, which can be directly connected with the microcontroller, with the features of high reliability, strong stability, rapid response, low power consumption, strong anti-interference and accurate dew point measurement and so on. And its products can be applied into various occasions.
Keyestudio SHT10 digital temperature sensor is a temperature and humidity composite sensor containing digital signal outputs calibration. It uses patented micromachining technology (CMOSens®) in the process of industrial COMS, which ensure that the product has high reliability and excellent long-term stability. Sensor has full scale calibration and two digital interface, which can be directly connected with the microcontroller, with the features of high reliability, strong stability, rapid response, low power consumption, strong anti-interference and accurate dew point measurement and so on. And its products can be applied into various occasions.
[[File:Ks0268 (1).jpg|thumb]]
<br>[[File:Ks0268 (1).jpg|500px|frameless|thumb]]<br>


==Specification==
==Specification==
*Working Voltage:5V(DC)
* Working Voltage:5V(DC)
* Interface:4PIN port
* Interface:4PIN port
* Humidity Measurement Range:0---100%RH
* Humidity Measurement Range:0---100%RH
Line 61: Line 61:
}
}
</pre>
</pre>
Library Download of SHT1x: [http://www.keyestudio.com/files/index/download/id/1506415291/]


==Result==
==Result==
Line 66: Line 68:


<br>[[File:KSO268-.png|500px|frameless|thumb]]<br>
<br>[[File:KSO268-.png|500px|frameless|thumb]]<br>


==Resources ==
==Resources ==


'''Datasheet:'''
'''Datasheet:'''
http://www.keyestudio.com/files/index/download/id/1500521036/
http://www.keyestudio.com/files/index/download/id/1500521036/
'''Library Download of SHT1x:'''
http://www.keyestudio.com/files/index/download/id/1506415291/


==Buy from ==
==Buy from ==
http://www.keyestudio.com/keyestudio-sht10-digital-temperature-sensor.html
http://www.keyestudio.com/keyestudio-sht10-digital-temperature-sensor.html


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

Revision as of 16:44, 26 September 2017

Introduction

Keyestudio SHT10 digital temperature sensor is a temperature and humidity composite sensor containing digital signal outputs calibration. It uses patented micromachining technology (CMOSens®) in the process of industrial COMS, which ensure that the product has high reliability and excellent long-term stability. Sensor has full scale calibration and two digital interface, which can be directly connected with the microcontroller, with the features of high reliability, strong stability, rapid response, low power consumption, strong anti-interference and accurate dew point measurement and so on. And its products can be applied into various occasions.
thumb

Specification

  • Working Voltage:5V(DC)
  • Interface:4PIN port
  • Humidity Measurement Range:0---100%RH
  • Humidity Measurement Accuracy:±4.5%RH(20%---80%RH)
  • Humidity Measurement Resolution:0.03%RH
  • Temperature Measurement Range:-40---123.8℃
  • Temperature Measurement Accuracy:±0.5℃(在25℃),±0.9℃(在0---40℃)
  • Temperature Measurement Resolution:0.01℃
  • Weight:2.6g

Connection Diagram


thumb

Sample Code

/* Lab10 - SHT1x serials (SHT10, SHT11, SHT15) Reading sample of hygrothermograph
 * 
 * Need to install SHT1x Library:
 *    [url]https://github.com/practicalarduino/SHT1x/[/url]
 */
 
#include <SHT1x.h>
 
// define SHT1x connection pin
#define dataPin  11
#define clockPin 10
 
// Initialize sht1x object
SHT1x sht1x(dataPin, clockPin);
 
void setup()
{
   Serial.begin(9600);
}
 
void loop()
{
  // declare three variables, representing temperature (Celsius), temperature (Fahrenheit) and humidity
  float temp_c, temp_f, humidity;
 
  // read SHT1x temperature and humidity value
  temp_c = sht1x.readTemperatureC();
  temp_f = sht1x.readTemperatureF();
  humidity = sht1x.readHumidity();
 
  // Output the temperature and humidity value to Serial Port
  Serial.print("Temperature: ");
  Serial.print(temp_c, 1);  // Show one after the decimal point
  Serial.print("C / ");
  Serial.print(temp_f, 1);  // Show one after the decimal point
  Serial.print("F. Humidity: ");
  Serial.print(humidity);
  Serial.println("%");
 
  delay(1000);
}

Library Download of SHT1x: [1]


Result

Wiring as the above diagram and burning the code,after power-on, open the serial monitor, it will display the current test temperature and humidity, as the graph shown below.


thumb


Resources

Datasheet:

http://www.keyestudio.com/files/index/download/id/1500521036/

Library Download of SHT1x:

http://www.keyestudio.com/files/index/download/id/1506415291/


Buy from

http://www.keyestudio.com/keyestudio-sht10-digital-temperature-sensor.html