The example program for mbed pin-compatible platforms

Dependencies:   mbed

Fork of mbed_blinky by Mbed

Revision:
11:49e4fe461915
Parent:
10:3427cf55bbea
--- a/main.cpp	Sat Oct 25 17:26:55 2014 +0000
+++ b/main.cpp	Sat Oct 25 17:28:42 2014 +0000
@@ -10,15 +10,18 @@
          
          
          a= 1;
+         wait(0.3);
          b=1;
+         wait(0.2);
            c=1;
-           wait(0.5);
+           wait(0.1);
            
            
         a = 0;
-
+wait(0.3);
         b=0;
+        wait(0.2);
        c=0;
-     wait(0.5);
+     wait(0.1);
     }
 }