Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: main.cpp
- Revision:
- 0:49e37eb917ef
- Child:
- 1:d9e6e3d4556e
diff -r 000000000000 -r 49e37eb917ef main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Nov 24 03:54:28 2015 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+DigitalOut myled(PB30);
+
+int main() {
+ printf("RESET");
+ while(1) {
+ myled = 1;
+ wait(0.2);
+ myled = 0;
+ wait(0.2);
+ printf("TEST");
+ }
+}