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

C++ API for the MPR121 I2C touch sensor. More...

Detailed Description

UPM module for the MPR121 touch sensor

mpr121.jpg
// Instantiate an MPR121 on I2C bus 0
upm::MPR121 *touch = new upm::MPR121(MPR121_I2C_BUS, MPR121_DEFAULT_I2C_ADDR);
// init according to AN3944 defaults
touch->configAN3944();
while (shouldRun)
{
touch->readButtons();
printButtons(touch);
sleep(1);
}

Public Member Functions

 MPR121 (int bus, uint8_t address=MPR121_DEFAULT_I2C_ADDR)
 
 ~MPR121 ()
 
bool configAN3944 ()
 
void readButtons ()
 
mraa_result_t writeBytes (uint8_t reg, uint8_t *buffer, unsigned int len)
 
void readBytes (uint8_t reg, uint8_t *buffer, unsigned int len)
 

Data Fields

uint16_t m_buttonStates
 
bool m_overCurrentFault
 

Constructor & Destructor Documentation

MPR121 ( int  bus,
uint8_t  address = MPR121_DEFAULT_I2C_ADDR 
)

mpr121 touch sensor constructor

Parameters
busi2c bus to use
~MPR121 ( )

MPR121 Destructor

Member Function Documentation

bool configAN3944 ( )

Setup a default configuration, based on Application Note 3944 (AN3944): http://cache.freescale.com/files/sensors/doc/app_note/AN3944.pdf

After configuration, the sensor will be left in the Run State.

Returns
True if configuration succeeded
void readButtons ( )

Read the button states into the m_buttonStates member variable. Also set the m_overCurrentFault variable if an over current is detected.

mraa_result_t writeBytes ( uint8_t  reg,
uint8_t *  buffer,
unsigned int  len 
)

Write value(s) into registers

Parameters
regregister location to start writing into
bufferbuffer for data storage
lennumber of bytes to write
Returns
mraa_result_t
void readBytes ( uint8_t  reg,
uint8_t *  buffer,
unsigned int  len 
)

Read value(s) from registers

Parameters
regregister location to start reading from
bufferbuffer for data storage
lennumber of bytes to read

Field Documentation

uint16_t m_buttonStates

button states

bool m_overCurrentFault

Over current fault detected


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