The Blinky Example Program that covers all Outrageous Circuit devices.
Dependencies: mbed
Revision 0:64d29b695bed, committed 2014-09-15
- Comitter:
- Experiment626
- Date:
- Mon Sep 15 21:02:19 2014 +0000
- Commit message:
- The Outrageous Circuits Blinky Program
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
mbed.bld | Show annotated file Show diff for this revision Revisions of this file |
diff -r 000000000000 -r 64d29b695bed main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Mon Sep 15 21:02:19 2014 +0000 @@ -0,0 +1,11 @@ +#include "mbed.h" + +main() +{ + DigitalOut led1(LED1, false); + + while (true) { + led1 = !led1; + wait(.5); + } +}
diff -r 000000000000 -r 64d29b695bed mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Sep 15 21:02:19 2014 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/552587b429a1 \ No newline at end of file