Nothing

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Jhp_pce
Date:
Mon Oct 21 13:15:37 2019 +0000
Commit message:
nothing;

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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Oct 21 13:15:37 2019 +0000
@@ -0,0 +1,29 @@
+#include "mbed.h"
+
+InterruptIn button(USER_BUTTON);
+
+DigitalOut led(LED1);
+
+double delay = 0.5; // 500 ms
+
+void pressed()
+{
+    delay = 0.1; // 100 ms
+}
+
+void released()
+{
+    delay = 0.5; // 500 ms
+}
+
+int main()
+{
+    // Assign functions to button
+    button.fall(&pressed);
+    button.rise(&released);
+
+    while (1) {
+        led = !led;
+        wait(delay);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Mon Oct 21 13:15:37 2019 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/22da6e220af6
\ No newline at end of file