decs

Dependencies:   storage_on_flash

Revision:
0:3fec541a3186
Child:
1:10322913b00f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat May 19 09:07:56 2018 +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(1);
+    }
+}
+