Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Interface Design for Acceleration Sensor:

Interface Design for Compass Sensor:

Code Block
languagec#
titleCompassAcceleration.h
firstline1
linenumberstrue
/*Library for the communication with  
the MagnetometerAccelerometer. Provides functions  
to read its values*/ 
 
//returns the single values separated by axes 
int getXMaggetXAccel(); 
int getYMaggetYAccel(); 
int getZMaggetZAccel(); 
 
//returns an array containing the value for all three axes 
int* getMaggetAccel();

Interface Design for Compass Sensor:

Code Block
languagec#
titleAccelerationCompass.h
firstline1
linenumberstrue
/*Library for the communication with  
the AccelerometerMagnetometer. Provides functions  
to read its values*/ 
 
//returns the single values separated by axes 
int getXAccelgetXMag(); 
int getYAccelgetYMag(); 
int getZAccelgetZMag(); 
 
//returns an array containing the value for all three axes 
int* getAccelgetMag();

 

|