Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of Amaldi_4_Exercise_LED-Button_Interrupt by
Diff: main.cpp
- Revision:
- 2:932543952437
- Parent:
- 1:cb693ddbc9b2
--- a/main.cpp Fri Jul 07 06:42:11 2017 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-#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);
- }
-}
