Making things flash in all colours

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
spyclub
Date:
Sat Jul 12 14:02:17 2014 +0000
Parent:
0:1d9ecfc751ca
Commit message:
shorter off time

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 1d9ecfc751ca -r ba3df483c915 main.cpp
--- a/main.cpp	Sat Jul 12 13:48:13 2014 +0000
+++ b/main.cpp	Sat Jul 12 14:02:17 2014 +0000
@@ -12,16 +12,16 @@
         redLED = 0;
         wait(2.0);
         redLED = 1;
-        wait(2.0);
+        wait(0.2);
         
         greenLED = 0;
         wait(2.0);
         greenLED = 1;
-        wait(2.0);
+        wait(0.2);
         
         blueLED = 0;
         wait(2.0);
         blueLED = 1;
-        wait(2.0);
+        wait(0.2);
     }
 }