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.
Diff: main.cpp
- Revision:
- 1:363f52776e64
- Parent:
- 0:50d20ebfba71
diff -r 50d20ebfba71 -r 363f52776e64 main.cpp
--- a/main.cpp Tue Aug 02 02:11:19 2016 +0000
+++ b/main.cpp Mon Aug 01 22:01:26 2016 -0700
@@ -1,10 +1,10 @@
#include "mbed.h"
-DigitalOut myled(LED1);
+DigitalOut myled(LED2);
int main() {
while(1) {
myled = !myled;
- wait(0.2);
+ wait(0.5);
}
}