Port of http://dev.qu.tu-berlin.de/projects/sf-razor-9dof-ahrs to an mbed, tested with a 9DOF Sensor Stick, SEN-10724

Dependencies:   mbed

main.cpp

Committer:
lpetre
Date:
2011-12-27
Revision:
0:9a72d42c0da3

File content as of revision 0:9a72d42c0da3:

#include "Razor_AHRS.h"

int main()
{
    IMU imu;
    imu.setup();
    while(1)
        imu.loop();
        
    return 0;
}