Itay Sharon / Mbed 2 deprecated LED_counter

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
ItaySharon
Date:
Thu Nov 05 12:16:34 2015 +0000
Commit message:
every time you click the user button it will blink 1 more time

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
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) {
+
+        }
+    }
+}
diff -r 000000000000 -r 6d519aadd679 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Nov 05 12:16:34 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file