A threaded blinky implementation.

Revision:
0:04fa7fb0681e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Sep 26 16:14:45 2016 +0000
@@ -0,0 +1,23 @@
+#include "mbed.h"
+#include "rtos.h"
+ 
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+ 
+void led2_thread(void const *args) {
+    while (true) {
+        led2 = !led2;
+        Thread::wait(1000);
+    }
+}
+ 
+int main() {
+    //Create a thread to execute the function led2_thread
+    Thread thread(led2_thread);
+    //led2_thread is executing concurrently with main at this point
+    
+    while (true) {
+        led1 = !led1;
+        Thread::wait(500);
+    }
+}
\ No newline at end of file