my led test

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
ramanaikv
Date:
Mon Mar 16 16:34:18 2015 +0000
Parent:
1:ff6cfb1de5db
Child:
3:fbd4f021a892
Commit message:
marge changes

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Mar 16 16:31:23 2015 +0000
+++ b/main.cpp	Mon Mar 16 16:34:18 2015 +0000
@@ -1,12 +1,12 @@
 #include "mbed.h"
 
-DigitalOut myled(LED1);
+DigitalOut myled(LED3);
 
 int main() {
     while(1) {
         myled = 1;
-        wait(0.5);
+        wait(0.2);
         myled = 0;
-        wait(0.5);
+        wait(0.2);
     }
 }