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.
Fork of HelloWorld by
Diff: main.cpp
- Revision:
- 2:0849369bd2c2
- Parent:
- 0:fb6bbc10ffa0
- Child:
- 3:c313b53b3ea7
- Child:
- 4:28dc84c1bc0e
diff -r 03c191369089 -r 0849369bd2c2 main.cpp
--- a/main.cpp Sun Jan 01 20:57:57 2012 +0000
+++ b/main.cpp Thu Jan 16 06:23:50 2014 +0000
@@ -1,12 +1,29 @@
#include "mbed.h"
-DigitalOut myled(LED1);
+DigitalOut myled1(LED1), myled2(LED2), myled3(LED3), myled4(LED4);
int main() {
while(1) {
- myled = 1;
+ myled1 = 1;
+ myled2 = 1;
+ myled3 = 1;
+ myled4 = 1;
+
+ myled1 = 0;
+ myled4 = 1;
wait(0.2);
- myled = 0;
+
+ myled2 = 0;
+ myled1 = 1;
wait(0.2);
+
+ myled3 = 0;
+ myled2 = 1;
+ wait(0.2);
+
+ myled4 = 0;
+ myled3 = 1;
+ wait(0.2);
+
}
}
