A short test program for all things m3pi and BtBee.

Dependencies:   btbee m3pi_ng mbed

Fork of m3pi_btTest by Nikolas Goldin

main.cpp

Committer:
ngoldin
Date:
2013-04-19
Revision:
0:546e224d2f88
Child:
1:c1845f088b5d

File content as of revision 0:546e224d2f88:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}