The Blinky Example Program that covers all Outrageous Circuit devices.

Dependencies:   mbed

Files at this revision

API Documentation at this revision

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
--- /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);
+    }    
+}
--- /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