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.
Dependencies: mbed
Diff: main.cpp
- Revision:
- 26:175a716a53ee
- Parent:
- 25:24b231c2642b
- Child:
- 27:4fc46d79da87
--- a/main.cpp Wed Sep 02 14:27:16 2020 +0000 +++ b/main.cpp Wed Sep 02 14:56:45 2020 +0000 @@ -1,13 +1,13 @@ #include "mbed.h" -DigitalOut myled(LED3); +DigitalOut myled(D3); int main() { while(1) { myled = 1; //eteint la led - wait(0.3); + wait(1.5); myled = 0; // allume la led - wait(0.1); + wait(0.5); } }