mbed_blinky program that uses the mbed-src-bmd-200 library instead of mbed

Dependencies:   mbed-src-bmd-200

This program is intended to be a sample program when using the BMD-200 Evaluation Board. It should be used with the mbed-src-bmd-200 library. Select the Nordic nRF51822 as your platform.

main.cpp

Committer:
dcnichols
Date:
2014-12-19
Revision:
0:47e0a395f3fd

File content as of revision 0:47e0a395f3fd:

#include "mbed.h"

DigitalOut myled(LED1);

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