Reference
Library
- Arduino IDE
- Download and install the SHT3x Library and Example Programs. (About how to install the library?)
Principle
This DFRobot SHT35 digital temperature and humidity sensor is based upon the Sensirion SHT35 sensor IC. Thanks to Sensirion’s CMOSens® technology, highly integrated capacitive humidity sensing components and band-gap temperature sensing components, the SHT35 offers high reliability and long-term stability with low power consumption, fast response and strong anti-interference ability.
SHT35 is the high-end version of the SHT3x series. It provides humidity accuracy ±1.5%RH @ 0%RH~80%RH (at 25°C), and temperature accuracy± 0.2°C @ -40℃-90℃ (typical).

API Description
/**
* @brief Get the measured temperature (in degrees Celsius).
* @return Return the temperature data of float type.
*/
float getTemperatureC();
/**
* @brief Get the measured temperature (in degrees Fahrenheit).
* @return Return the temperature data of float type.
*/
float getTemperatureF();
/**
* @brief Get measured humidity(%RH).
* @return Return the humidity data of float type.
*/
float getHumidityRH();
Was this article helpful?
