LED Hello World

Dependencies:   mbed

Fork of HelloWorld by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
henr22
Date:
Fri Feb 21 20:30:41 2014 +0000
Parent:
2:86bd227d75d5
Commit message:
slowdown blink rate

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Fri Feb 21 20:28:56 2014 +0000
+++ b/main.cpp	Fri Feb 21 20:30:41 2014 +0000
@@ -6,9 +6,9 @@
     while(1) {
         myled = 1;
         myled2 = 0;
-        wait(0.2);
+        wait(0.5);
         myled = 0;
         myled2 = 1;
-        wait(0.2);
+        wait(0.5);
     }
 }