This is a test
Revision 0:2e6c56c29340, committed 2018-08-20
- Comitter:
- jplunkett
- Date:
- Mon Aug 20 17:35:58 2018 +0000
- Child:
- 1:ac617c2d1c1c
- Commit message:
- test
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
| mbed-os.lib | Show annotated file Show diff for this revision Revisions of this file |
--- /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
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed-os.lib Mon Aug 20 17:35:58 2018 +0000 @@ -0,0 +1,1 @@ +https://github.com/armmbed/mbed-os/#f8b140f8d7cb226e41486c5df66ac4f3ce699219
Jenny Plunkett