A simple program to Toggle the 2 OnBoard LEDs.

Fork of Blinky_Led2 by Rohan Gurav

Revision:
1:c8bf330e87ba
Parent:
0:889636b54b07
--- a/main.cpp	Tue May 15 14:43:30 2018 +0000
+++ b/main.cpp	Sun Jul 22 19:50:46 2018 +0000
@@ -1,19 +1,31 @@
+/*
+Created on: 12/05/2018
+Source: (Self)
+Code: This code toggles the status of the onboard leds with a count-down 
+*/
+
 #include "mbed.h"
 
-DigitalOut led2(LED2);
+DigitalOut led2(P2_10);
 DigitalOut led1(LED1);
+Serial pc(USBTX, USBRX);
+int16_t i = 3;
 
 // main() runs in its own thread in the OS
-int main() 
+int main()
 {
     led1 = 1;
     led2 = 0;
-    
-    while (true) 
-    {
+
+    while (true) {
         led2 = !led2;
         led1 = !led1;
         wait(0.5);
+        pc.printf("Toggle in : \r\n");
+        for (i = 1; i <= 3; i++) 
+        {
+            pc.printf("%d\n",(i));
+        }
     }
 }