Timer interrupt code example for FRDM-KL25Z

Dependencies:   mbed

Revision:
0:1345a2932f87
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Wed Jun 04 19:25:40 2014 +0000
@@ -0,0 +1,35 @@
+#include "mbed.h"
+ 
+DigitalOut RED(LED1); 
+DigitalOut GREEN(LED2);
+Timeout timeout;
+
+ 
+int on = 1;
+
+ 
+
+ void clear() 
+{
+    on=0;
+    GREEN=0;
+    wait(.4);
+    GREEN=1;
+    
+}
+
+
+int main() 
+{
+    timeout.attach(&clear,5);
+ 
+    GREEN=1;   
+    while(on)
+    {
+        RED= !RED;
+        wait(0.3);
+    }
+    
+}
+
+