Example greentea tests with Blinky library

Dependencies:   Blinky

Revision:
0:0d5d376157a0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Sep 19 22:12:16 2016 +0000
@@ -0,0 +1,9 @@
+#include "Blinky.h"
+
+int main(void){
+    Blinky blinker(LED1, 500);
+    blinker.start();
+    Thread::wait(5000);
+    blinker.stop();
+}
+