§BHELI / Mbed 2 deprecated btn_runlight1

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
trivla
Date:
Mon Mar 16 15:28:23 2015 +0000
Commit message:
ff

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 a82e8b118dfc main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Mar 16 15:28:23 2015 +0000
@@ -0,0 +1,38 @@
+#include "mbed.h"
+
+
+BusOut lb(P1_13,P1_12,P1_7,P1_6,P1_4,P1_3,P1_1,P1_0,LED4,LED3,LED2,LED1);
+
+
+DigitalIn sw4(P1_16);
+int prevSW4=0;
+
+int CheckButton();
+
+void OneRunLightStep();
+int main() 
+{
+    while(1)
+     {
+        if( CheckButton() ) 
+            OneRunLightStep();
+    }
+}
+
+int CheckButton()
+{
+ int ret=0;
+ if( prevSW4==0 && sw4==1)   
+    ret=1;
+    prevSW4 = sw4==1;
+    return ret;
+}
+
+void OneRunLightStep()
+{
+    if(lb==0)
+        lb=1;
+    else
+        lb = lb << 1;
+    
+}
\ No newline at end of file
diff -r 000000000000 -r a82e8b118dfc mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Mar 16 15:28:23 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/4fc01daae5a5
\ No newline at end of file