LED crazy blink

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Corinthians
Date:
Wed Nov 19 07:03:47 2014 +0000
Parent:
1:ffc2292c68db
Commit message:
blink rate change;

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Nov 19 07:02:46 2014 +0000
+++ b/main.cpp	Wed Nov 19 07:03:47 2014 +0000
@@ -5,8 +5,8 @@
 int main() {
     while(1) {
         myled = 0;
-        //wait(0.2);
-        //myled = 0;
-        //wait(0.2);
+        wait(0.05);
+        myled = 1;
+        wait(0.05);
     }
 }