Product | Sensors | Environment Sensor | SHT1x Temperature & Humidity Sensor
SHT1x Temperature & Humidity Sensor
SHT1x Temperature & Humidity Sensor
41880
 
US$15.98 Loading ...
 
Share/Save/Bookmark

Digital Temperature & Humidity Sensor Module
 

This sensor uses SHT1x sensor.  SHT1x is individually calibrated in a precision humidity chamber. The calibration coefficients are programmed into an OTP memory on the chip. These coefficients are used to internally calibrate the signals from the sensors. The 2-wire serial interface and internal voltage regulation allows for easy and fast system integration. The tiny size and low power consumption makes SHT1x the ultimate choice for even the most demanding applications.

As to environmental temperature and humidity measurement and control,Swiss Sensirion launched the SHT family integrated of digital temperature and humidity sensor,which is undoubtedly a very good choice. Although the prices is a littile more than common analog temperature or humidity sensor, it is good when you need to read an accurate temperature and humidity values. Besides it has high reliability and excellent long-term stability.

We designed this digital temperature and humidity sensor based on most widely used SHT10 from SHT family.

Connecting Diagram :


SHT10 used a two-wire serial interface similar to I2C (bidirectional 2-wire), so we need to use two connection ISC/COM cables to connect with the electronic building module.


To use the electronic building module with Arduino, you can  download the appropriate library code in the official website, or download directly from here,  We use "Arduino 0018"to test. Extract the files to the "libraries" directory under Arduino installation directory:





Connect DATA and SCK pins on electronic building module respectively to Arduino digital I / O, 10 pins and 11 pins, As follows:

#include <SHT1x.h>

#define dataPin  10   // DATA
#define clockPin 11   // SCK
SHT1x sht1x(dataPin, clockPin);

void setup()
{
   Serial.begin(9600);
   Serial.println("Starting up");
}

void loop()
{
  float temp_c;
  float temp_f;
  float humidity;

  // Read values from the sensor
  temp_c = sht1x.readTemperatureC();
  temp_f = sht1x.readTemperatureF();
  humidity = sht1x.readHumidity();

  // Print the values to the serial port
  Serial.print("Temperature: ");
  Serial.print(temp_c, DEC);
  Serial.print("C / ");
  Serial.print(temp_f, DEC);
  Serial.print("F. Humidity: ");
  Serial.print(humidity);
  Serial.println("%");

  delay(2000);
}


here is output as follows:



Applications :

1) Precise data logging

2) Transmitters

3) Automation & process control

4) Building control and HVAC

5) Test & Measurement

6) Medical

More information about SHT10 digital humidity and temperature sensor


Economic relative humidity sensor for low cost applications.



SHT10 digital humidity and temperature sensor is the low cost version of the reflow solderable humidity sensor series. The accuracies have been opened to a level that guarantees a very competitive price. The capacitive humidity sensor is available up to high volumes and as every other sensor type of the SHTxx family, it is fully calibrated and provides a digital output.

Features :

1、Energy consumption:  80uW (at 12bit, 3V, 1 measurement / s)

2、RH operating range: 0 – 100% RH

3、T operating range: -40 – +125°C (-40 – +257°F)

4、RH response time: 8 sec (tau63%)

5、Output: digital (2-wire interface)

6、Maximal accuracy limits for relative humdity and temperature:






 
Write a review
*Review title
Please enter subject.
*Your review
Please enter review.
*Rating
(Click star icon to comment)
 
Display name
*Enter security code

CAPTCHA

Please enter code
Loading ...

Related Items


Newsletter

Join our newsletter today, to get latest product information and promotion code.

Join
Loading ...