# HTS221 **Repository Path**: mirrors_stm32duino/HTS221 ## Basic Information - **Project Name**: HTS221 - **Description**: Arduino library to support the HTS221 capacitive digital sensor for relative humidity and temperature - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HTS221 Arduino library to support the HTS221 capacitive digital sensor for relative humidity and temperature ## API This sensor uses I2C to communicate. It is then required to create a TwoWire interface before accessing to the sensors: TwoWire dev_i2c(I2C_SDA, I2C_SCL); dev_i2c.begin(); An instance can be created and enabled following the procedure below: For the humidity sensor: HTS221Sensor HumTemp(&dev_i2c); HumTemp.begin(); HumTemp.Enable(); The access to the sensor values is done as explained below: Read humidity and temperature. float humidity; float temperature; HumTemp.GetHumidity(&humidity); HumTemp.GetTemperature(&temperature); ## Documentation You can find the source files at https://github.com/stm32duino/HTS221 The HTS221 datasheet is available at http://www.st.com/content/st_com/en/products/mems-and-sensors/humidity-sensors/hts221.html