upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for Adxl345 (3-axis digital accelerometer) More...
The Adxl345 is a 3-axis digital accelerometer. (http://www.seeedstudio.com/wiki/images/2/2c/ADXL345_datasheet.pdf) The sensor has configurable resolutions for measuring ±2g, ±4g, ±8g or ±16g. Note that the sensor it is incompatible and will not be detected on the I2C bus by the Intel Edison using the Arduino breakout board at 5V (3V3 will work fine).
Public Member Functions | |
Adxl345 (int bus) | |
~Adxl345 () | |
float * | getAcceleration () |
int16_t * | getRawValues () |
uint8_t | getScale () |
mraa_result_t | update () |
Adxl345 | ( | int | bus | ) |
Creates an Adxl345 object
bus | number of used i2c bus |
float * getAcceleration | ( | ) |
Returns a pointer to a float[3] that contains acceleration (g) forces
int16_t * getRawValues | ( | ) |
Returns a pointer to an int[3] that contains the raw register values for X, Y and Z
uint8_t getScale | ( | ) |
Returns the scale the accelerometer is currently set up to: 2, 4, 8 or 16
mraa_result_t update | ( | void | ) |
Updates the acceleration values from i2c bus