What is a SHT75 sensor ?
The SHT75 is a high-precision digital temperature and humidity sensor developed by Sensirion, a major player in the industry.
Unlike the DHT11/DHT22, it is individually calibrated at the factory and stores its calibration coefficients in an integrated EEPROM, ensuring metrological traceability.
It is widely used in:
- industrial and HVAC monitoring,
- professional weather stations,
- and laboratory measurement systems.
Operating principle
The SHT75 integrates:
- a polymer capacitive cell sensitive to humidity,
- an integrated diode temperature sensor,
- a 14-bit ADC and a digital processor.
The measurements are transmitted in digital form via a 2-wire synchronous interface, similar to SPI (Signal + Clock + Power + Ground).
Official conversion formulas (Sensirion):
T (°C) = -39.7 + 0.01 × SO_T
RH (%) = -2.0468 + 0.0367 × SO_RH - 1.5955 × 10^{-6} × SO_RH²💡 SO_T and SO_RH = raw values from the sensor (0–16383 for 14 bits).
Example of digital conversion (pseudo-code SPI-like)
uint16_t readSensor(uint8_t command) { sendCommand(command); waitForMeasurement(); return read16Bits(); } float temperature = -39.7 + 0.01 * readSensor(0x03); float humidity = -2.0468 + 0.0367 * readSensor(0x05) - 1.5955e-6 * pow(readSensor(0x05), 2);
✅ Typical example:
SO_T = 25300 → T = 213.3 °C
SO_RH = 21000 → HR = 48.2 %
Principle diagram
+3.3V │ [SHT75] │ DATA ───────┐ │ SCK ────────┤── MCU (STM32, Arduino, ESP32…) │ GND
💡 The interface is "bit-bang" compatible with SPI or I²C depending on the microcontroller.
Application areas
🧠 Precision instrumentation
🏭 Industrial control and laboratories
🌿 Greenhouses and clean rooms
🌡️ Professional weather stations
💧 Climate monitoring of buildings