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

Revision:
0:9a72d42c0da3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Dec 27 17:20:06 2011 +0000
@@ -0,0 +1,11 @@
+#include "Razor_AHRS.h"
+
+int main()
+{
+    IMU imu;
+    imu.setup();
+    while(1)
+        imu.loop();
+        
+    return 0;
+}