upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for AM2315 chip (Temperature & Humidity Sensor) More...

Detailed Description

Measurement Specialties AM2315 is a digital humidity sensor with temperature output. RH will report between 0 and 100% and temperature range is -40 to +125 degC. The sampling period of this sensor is 2 seconds. Reads occurring more often than that will return cached data.

am2315.jpeg
float humidity = 0.0;
float temperature = 0.0;
sensor = new upm::AM2315(0, AM2315_I2C_ADDRESS);
sensor->testSensor();
while (!doWork) {
humidity = sensor->getHumidity();
temperature = sensor->getTemperature();
std::cout << "humidity value = " <<
humidity <<
", temperature value = " <<
temperature << std::endl;
usleep (500000);
}

Public Member Functions

 AM2315 (int bus, int devAddr=AM2315_I2C_ADDRESS)
 
 ~AM2315 ()
 
float getHumidity (void)
 
float getTemperature (void)
 
float getTemperatureF (void)
 
int testSensor (void)
 
int i2cWriteReg_32 (int reg, uint32_t ival)
 
int i2cWriteReg_16 (int reg, uint16_t ival)
 
int i2cWriteReg_8 (int reg, uint8_t ival)
 
uint32_t i2cReadReg_32 (int reg)
 
uint16_t i2cReadReg_16 (int reg)
 
uint8_t i2cReadReg_8 (int reg)
 

Constructor & Destructor Documentation

AM2315 ( int  bus,
int  devAddr = AM2315_I2C_ADDRESS 
)

Instanciates a AM2315 object

Parameters
busnumber of used bus
devAddraddress of used i2c device
modeAM2315 oversampling

Here is the call graph for this function:

~AM2315 ( )

AM2315 object destructor, basicaly it close i2c connection.

Member Function Documentation

float getHumidity ( void  )

Get the current measured humidity [RH] Data is updated every 2 seconds - accesses more often than that will return cached data

Here is the caller graph for this function:

float getTemperature ( void  )

Get the humidity cell temperature [degC] Data is updated every 2 seconds - accesses more often than that will return cached data

Here is the caller graph for this function:

float getTemperatureF ( void  )

Get the humidity cell temperature [degF] Data is updated every 2 seconds - accesses more often than that will return cached data

Here is the call graph for this function:

int testSensor ( void  )

Function intended to test the device and verify it is correctly operating.

Here is the call graph for this function:

int i2cWriteReg_32 ( int  reg,
uint32_t  ival 
)

Write four byte (32b) register

Note: These access routines are not the normal accesses to an i2c device. The AM2315 contains a microcontroller that manages the actual readings. These handlers then make requests over i2c using a protocol defined by the AM2315.

Parameters
regaddress of a register
ival32b value
int i2cWriteReg_16 ( int  reg,
uint16_t  ival 
)

Write two byte (16b) register

Parameters
regaddress of a register
ival16b value
int i2cWriteReg_8 ( int  reg,
uint8_t  ival 
)

Write one byte (8b) register

Parameters
regaddress of a register
ival8b value
uint32_t i2cReadReg_32 ( int  reg)

Read four bytes register

Parameters
regaddress of a register

Here is the caller graph for this function:

uint16_t i2cReadReg_16 ( int  reg)

Read two bytes register

Parameters
regaddress of a register

Here is the caller graph for this function:

uint8_t i2cReadReg_8 ( int  reg)

Read one byte register

Parameters
regaddress of a register

Here is the caller graph for this function:


The documentation for this class was generated from the following files: