LED blinky

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
shrutimk
Date:
Tue Feb 10 05:06:06 2015 +0000
Parent:
1:4a71303b813e
Commit message:
Changed blink rate

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 4a71303b813e -r 488f7e70d8b7 main.cpp
--- a/main.cpp	Tue Feb 10 05:03:54 2015 +0000
+++ b/main.cpp	Tue Feb 10 05:06:06 2015 +0000
@@ -8,9 +8,9 @@
     while (true) {
         led1 = 1; // toggle led
         led2 = 1;
-        wait(0.2);
+        wait(0.5);
         led1 = 0;
         led2 = 0;
-        wait(0.2);
+        wait(0.5);
     }
 }
\ No newline at end of file