upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for Itg3200 (3-axis digital gyroscope) More...
The InvenSense Itg3200 is a 3-axis digital gyroscope. (https://www.sparkfun.com/datasheets/Sensors/Gyro/PS-ITG-3200-00-01.4.pdf) This sensor has been tested and can run at either 3V3 or 5V on the Intel Galileo.
However, it is incompatible and will not be detected on the I2C bus by the Intel Edison using the Arduino breakout board.
Public Member Functions | |
Itg3200 (int bus) | |
~Itg3200 () | |
mraa_result_t | calibrate () |
float | getTemperature () |
float * | getRotation () |
int16_t * | getRawValues () |
int16_t | getRawTemp () |
mraa_result_t | update () |
Itg3200 | ( | int | bus | ) |
Creates an Itg3200 object
bus | number of used i2c bus |
mraa_result_t calibrate | ( | void | ) |
Calibrates the sensor to 0 on all axes. Sensor needs to be resting for accurate calibration. Takes about 3 seconds and is also called by constructor on object creation.
float getTemperature | ( | void | ) |
Returns the temperature reading from the integrated temperature sensor in Celsius degrees
float * getRotation | ( | ) |
Returns a pointer to an float[3] that contains computed rotational speeds (angular velocities)
int16_t * getRawValues | ( | ) |
Returns a pointer to an int[3] that contains the raw register values for X, Y and Z
int16_t getRawTemp | ( | ) |
Returns an int that contains the raw register value for the temperature
mraa_result_t update | ( | void | ) |
Updates the rotational values and temperature by reading from i2c bus