Ks0268 keyestudio SHT10 Digital Temperature Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
(Created page with "==Keyestudio SHT10 Digital Temperature Sensor == <br>500px|frameless|thumb<br> ==Introduction== Keyestudio SHT10 digital temperature sensor is a tempe...")
 
Line 70: Line 70:
==Resources ==
==Resources ==


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



Revision as of 14:08, 28 July 2017

Keyestudio SHT10 Digital Temperature Sensor


thumb

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.

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);
}

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/

Buy from

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