Flight control with nRF and MPU6050

Dependencies:   mbed

main.cpp

Committer:
Ucial
Date:
2018-08-31
Revision:
0:7365f8db1bac
Child:
1:23afaebeed15

File content as of revision 0:7365f8db1bac:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}