asdasd

Revision:
0:612ab7b3326c
Child:
1:f2a8b36c93e2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat Jun 17 06:55:30 2017 +0000
@@ -0,0 +1,12 @@
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+
+// main() runs in its own thread in the OS
+int main() {
+    while (true) {
+        led1 = !led1;
+        wait(0.5);
+    }
+}
+