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.
Revision 1:a6a4af9225c0, committed 2010-10-12
- 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); + } +}