libkipr  1.0.0
compass.hpp
Go to the documentation of this file.
1 #ifndef _KIPR_COMPASS_COMPASS_HPP_
2 #define _KIPR_COMPASS_COMPASS_HPP_
3 
4 namespace kipr
5 {
6  namespace compass
7  {
8  class Compass
9  {
10  public:
13 
14  static void calibrate();
15 
16  static void setParams(float meanX, float meanY, float meanZ,
17  float W1, float W2, float div_E1, float div_E2);
18 
19  static float getAngle(void);
20  };
21  }
22 }
23 
24 #endif
Definition: compass.hpp:9
static void calibrate()
static void setParams(float meanX, float meanY, float meanZ, float W1, float W2, float div_E1, float div_E2)
static float getAngle(void)
Definition: accel.hpp:7