Hexcopter distance measurement using IMU unit

Dependencies:   mbed MPU6050_acc_CF ledControl

main.cpp

Committer:
mbedproject
Date:
2016-05-31
Revision:
0:ecc07e53ba65
Child:
1:54b66b7ca11e

File content as of revision 0:ecc07e53ba65:

#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());
}