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:
- 0:890055ba3680
diff -r 000000000000 -r 890055ba3680 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Sat Oct 09 11:13:13 2010 +0000
@@ -0,0 +1,31 @@
+//Hello mbed world 1
+#include "mbed.h"
+
+DigitalOut led1(LED1);
+DigitalOut led2(LED2);
+DigitalOut led3(LED3);
+DigitalOut led4(LED4);
+
+int main() {
+ int currentLed = 0;
+ while(1) {
+ currentLed++;
+ if (currentLed > 4) currentLed = 1;
+ if (currentLed == 1) {
+ led1 = 1;
+ led4 = 0;
+ }else if (currentLed == 2) {
+ led2 = 1;
+ led1 = 0;
+ }else if (currentLed == 3) {
+ led3 = 1;
+ led2 = 0;
+ }else if (currentLed == 4) {
+ led4 = 1;
+ led3 = 0;
+ }
+
+ wait(0.2);
+
+ }
+}