This is a test
Diff: main.cpp
- Revision:
- 0:2e6c56c29340
- Child:
- 1:ac617c2d1c1c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Mon Aug 20 17:35:58 2018 +0000
@@ -0,0 +1,11 @@
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+
+// main() runs in its own thread in the OS
+int main() {
+ while (true) {
+ led1 = !led1;
+ wait(0.5);
+ }
+}
\ No newline at end of file
Jenny Plunkett