led blionking

Dependencies:   mbed

Fork of HelloWorld by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
sathguru
Date:
Mon Apr 28 08:11:07 2014 +0000
Parent:
1:03c191369089
Commit message:
guru

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sun Jan 01 20:57:57 2012 +0000
+++ b/main.cpp	Mon Apr 28 08:11:07 2014 +0000
@@ -1,12 +1,20 @@
 #include "mbed.h"
 
 DigitalOut myled(LED1);
-
+DigitalOut myled1(LED2);
+DigitalOut myled2(LED3);
+DigitalOut myled3(LED4);
 int main() {
     while(1) {
         myled = 1;
-        wait(0.2);
+        myled1= 1;
+        myled2 = 1;
+        myled3 = 1;
+        wait(1);
         myled = 0;
-        wait(0.2);
+        myled1= 0;
+        myled2 = 0;
+        myled3 = 0;
+        wait(1);
     }
 }