Fork of DigitalOut_HelloWorld
Fork of DigitalOut_HelloWorld by
Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing Testing
Revision 0:b5a9e0614efd, committed 2013-02-13
- Comitter:
- mbed_official
- Date:
- Wed Feb 13 16:12:59 2013 +0000
- Child:
- 1:b66c5cfa5d8f
- Commit message:
- DigitalOut Hello World
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 Wed Feb 13 16:12:59 2013 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() {
+ while(1) {
+ myled = 1;
+ wait(0.2);
+ myled = 0;
+ wait(0.2);
+ }
+}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Wed Feb 13 16:12:59 2013 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/0954ebd79f59 \ No newline at end of file
Jenny Plunkett
