Flight control with nRF and MPU6050

Dependencies:   mbed

main.cpp

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

File content as of revision 1:23afaebeed15:

#include "mbed.h"
#include "mpu6050.h"
#include "nRF24L01P.h"

Serial pc(USBTX,USBRX,115200);

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
    }
}