Project for testing the minimu-9 v2 by pololu

Dependencies:   L3GD20 LSM303DLHC mbed

main.cpp

Committer:
bclaus
Date:
2013-02-21
Revision:
0:4b3d36de811a

File content as of revision 0:4b3d36de811a:

#include "mbed.h"
#include "L3GD20.h"
#include "LSM303DLHC.h"
 
L3GD20 gyro(p28, p27);
Serial debug(USBTX,USBRX);
LSM303DLHC compass(p28, p27);



  int main() {
    float ax, ay, az;
    float mx, my, mz;
    float gx, gy, gz;
    debug.format(8,Serial::None,1);
    debug.baud(115200);
    debug.printf("miniimu-9 v2 Test");

    while(1) {
      
      compass.read(&ax, &ay, &az, &mx, &my, &mz);
      gyro.read(&gx, &gy, &gz);
      debug.printf("a %.4f %.4f %.4f m %.4f %.4f %.4f m %.4f %.4f %.4f\n\r",ax,ay,az,mx,my,mz,gx,gy,gz);
      wait(0.05);
    }
  }