The example program for mbed pin-compatible platforms

Dependencies:   mbed

Fork of mbed_blinky by Mbed

Revision:
10:3427cf55bbea
Parent:
9:2ef0f688c4e3
Child:
11:49e4fe461915
--- a/main.cpp	Sat Oct 25 17:17:25 2014 +0000
+++ b/main.cpp	Sat Oct 25 17:26:55 2014 +0000
@@ -6,14 +6,19 @@
 
 int main() {
     while(1) {
+         
+         
+         
          a= 1;
          b=1;
-         c=1;
-        wait(1.0);
+           c=1;
+           wait(0.5);
+           
+           
         a = 0;
+
         b=0;
-        c=0;
-        
-        wait(1.0);
+       c=0;
+     wait(0.5);
     }
 }