SHTC3 เป็นเซ็นเซอร์วัดอุณหภูมิและความชื้นที่มีความแม่นยำสูงในรูปแบบดิจิทัล (digital) ซึ่งผลิตโดย Sensirion AG ซึ่งเป็นบริษัทชั้นนำในด้านเซ็นเซอร์และโมดูลอิเล็กทรอนิกส์เพื่อการวัดและควบคุมสภาพแวดล้อมต่าง ๆ
SHTC3 มีความแม่นยำสูงในการวัดอุณหภูมิและความชื้น และมีขนาดเล็กทำให้ง่ายต่อการใช้งานในหลายแอปพลิเคชัน โดยเซ็นเซอร์นี้สามารถใช้งานได้ในอุปกรณ์ต่าง ๆ เช่น อุปกรณ์ที่ต้องการตรวจวัดสภาพอากาศ อุปกรณ์ที่ต้องการควบคุมความชื้น หรืออุปกรณ์ที่ต้องการตรวจสอบเงื่อนไขสภาพแวดล้อมอื่น ๆ อีกด้วย
Pin description
1. VDD 3.3 ~ 5.5V DC2. GND, ground, negative pole of power3. SDA serial data, two-way port4. SCL serial clock, input portTechnical Parameters:1. Humidity measurement range: 0 ~ 100% RH2. Humidity measurement accuracy: ± 2% RH3. Temperature measurement range: -40 ~ 125 ℃4. Temperature measurement accuracy: ± 0.2 ℃5. Working voltage: 3.3 ~ 5VDC6.I2C interface output
Application:HVAC, dehumidifiers, agriculture, cold chain storage, testing and testing equipment, consumer products, automobiles, automatic control, data loggers, weather stations, home appliances, humidity regulators, medical, and other related humidity detection and control.
LAB Test


Code Example
#include "Adafruit_SHTC3.h"
Adafruit_SHTC3 shtc3 = Adafruit_SHTC3();
void setup() {
Serial.begin(9600);
while (!Serial)
delay(10); // will pause Zero, Leonardo, etc until serial console opens
Serial.println("SHTC3 test");
if (! shtc3.begin()) {
Serial.println("Couldn't find SHTC3");
while (1) delay(1);
}
Serial.println("Found SHTC3 sensor");
}
void loop() {
sensors_event_t humidity, temp;
shtc3.getEvent(&humidity, &temp);// populate temp and humidity objects with fresh data
Serial.print("Temperature: ");
Serial.print(temp.temperature);
Serial.println(" degrees C");
Serial.print("Humidity: ");
Serial.print(humidity.relative_humidity);
Serial.println("% rH");
delay(2000);
}