Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 2:488f7e70d8b7, committed 2015-02-10
- 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