cqegfgf fsgfgfdgsd / Mbed 2 deprecated test_hello

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
pcotret
Date:
Tue Oct 12 06:17:19 2010 +0000
Parent:
0:6ec87c795bb0
Commit message:

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Tue Oct 12 05:57:58 2010 +0000
+++ b/main.cpp	Tue Oct 12 06:17:19 2010 +0000
@@ -1,14 +1,35 @@
-#include "mbed.h"
-
-DigitalOut myled(LED1);
-
-int main()
-{
-    while(1)
-    {
-        myled = 1;
-        wait(0.1);
-        myled = 0;
-        wait(0.1);
-    }
-}
+#include "mbed.h"
+
+// Déclarer les variables associées aux LEDs
+DigitalOut myled1(LED1);
+DigitalOut myled2(LED2);
+DigitalOut myled3(LED3);
+DigitalOut myled4(LED4);
+
+// Programme principal
+int main()
+{
+    while (1)
+    {
+        // LED 1
+        myled1 = 1;
+        wait(0.05);
+        myled1 = 0;
+        wait(0.05);
+        // LED 2
+        myled2 = 1;
+        wait(0.1);
+        myled2 = 0;
+        wait(0.1);
+        // LED 3
+        myled3 = 1;
+        wait(0.2);
+        myled3 = 0;
+        wait(0.2);
+        // LED 4
+        myled4 = 1;
+        wait(0.4);
+        myled4 = 0;
+        wait(0.4);
+    }
+}