Itay Sharon / Mbed 2 deprecated LED_counter

Dependencies:   mbed

Revision:
0:6d519aadd679
diff -r 000000000000 -r 6d519aadd679 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Nov 05 12:16:34 2015 +0000
@@ -0,0 +1,25 @@
+#include "mbed.h"
+
+DigitalOut LED_1(LED1);
+DigitalIn USR_BTN(PC_13);
+
+int count = 1;
+
+int main()
+{
+    while(1) {
+        while(USR_BTN) {
+
+        }
+        for(int i = 0; i < count; i++) {
+            LED_1 = 1;
+            wait(0.2);
+            LED_1 = 0;
+            wait(0.2);
+        }
+        count++;
+        while(!USR_BTN) {
+
+        }
+    }
+}