A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/stm32duino/HTS221 below:

stm32duino/HTS221: Arduino library to support the HTS221 capacitive digital sensor for relative humidity and temperature

Arduino library to support the HTS221 capacitive digital sensor for relative humidity and temperature

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);  

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


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4