upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for HTU21D chip (Atmospheric Pressure Sensor) More...
Measurement Specialties [HTU21D] is a digital humidity sensor with temperature output. RH will report between 0 and 100% and temperature range is -40 to +125 degC. Note that the getCompRH is the preferred function below (passing true to cause a measurement cycle). If the actual values used for the compensated ready are necessary, use the getHumidity(false) and getTemperature(false) functions following the getCompRH call. Also note that the sensor should not perform more than a couple of measurements per second to limit the heating of the sensor.
Public Member Functions | |
HTU21D (int bus, int devAddr=HTU21D_I2C_ADDRESS) | |
~HTU21D () | |
int | sampleData (void) |
float | getHumidity (int bSampleData=false) |
float | getTemperature (int bSampleData=false) |
float | getCompRH (int bSampleData=true) |
int | setHeater (int bEnable=false) |
int | resetSensor (void) |
int | testSensor (void) |
mraa_result_t | i2cWriteReg (uint8_t reg, uint8_t value) |
uint16_t | i2cReadReg_16 (int reg) |
uint8_t | i2cReadReg_8 (int reg) |
HTU21D | ( | int | bus, |
int | devAddr = HTU21D_I2C_ADDRESS |
||
) |
int sampleData | ( | void | ) |
Initiate a temp/pressure mesasurement and wait for function to complete. The humidity and temp registers can be read after this call.
float getHumidity | ( | int | bSampleData = false | ) |
Get the current measured humidity [RH]
float getTemperature | ( | int | bSampleData = false | ) |
Get the humidity cell temperature [degC]
float getCompRH | ( | int | bSampleData = true | ) |
Using the current humidity and temperature the function will calculate the compensated RH using the equation from the datasheet.
int setHeater | ( | int | bEnable = false | ) |
Set the heater state. The heater is used to either test the sensor functionality since the temp should increase 0.5 to 1.5 degC and the humidity should decrease. The testSensor() function below will use the heater.
bEnable | Set to non-zero to turn on heater |
int resetSensor | ( | void | ) |
Perform a soft RESET of the MPL3115A2 device to ensure it is in a known state. This function can be used to reset the min/max temperature and pressure values.
int testSensor | ( | void | ) |
Function intended to test the device and verify it is correctly operating.
mraa_result_t i2cWriteReg | ( | uint8_t | reg, |
uint8_t | value | ||
) |
Write to one byte register
reg | address of a register |
value | byte to be written |
uint16_t i2cReadReg_16 | ( | int | reg | ) |
Read two bytes register
reg | address of a register |
uint8_t i2cReadReg_8 | ( | int | reg | ) |
Read one byte register
reg | address of a register |