Interrupt code example for FRDM-KL25Z

Dependencies:   mbed

Revision:
0:e1052d370745
diff -r 000000000000 -r e1052d370745 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Jun 04 19:24:45 2014 +0000
@@ -0,0 +1,28 @@
+#include "mbed.h"
+
+
+DigitalOut RED(LED1);
+DigitalOut BLUE(LED2);
+InterruptIn Interrupt(PTD1);
+
+
+void blink()
+{
+    RED=1;
+    BLUE=0;
+    wait(.4);
+    BLUE=1;
+    wait(.4);
+}
+
+int main() 
+{
+    Interrupt.fall(&blink);
+    
+    BLUE=1;
+    while (1) 
+    {
+        RED=0;
+    }
+       
+}
\ No newline at end of file