Hexcopter distance measurement using IMU unit

Dependencies:   mbed MPU6050_acc_CF ledControl

Revision:
0:ecc07e53ba65
Child:
1:54b66b7ca11e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue May 31 04:52:50 2016 +0000
@@ -0,0 +1,11 @@
+#include "mbed.h"
+
+Timer t;
+
+int main()
+{
+    t.start();
+    printf("Hello World!\n");
+    t.stop();
+    printf("The time taken was %f seconds\n", t.read());
+}