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
main.cpp
- Committer:
- cauvinf
- Date:
- 2020-09-08
- Revision:
- 27:994c549bf33e
- Parent:
- 26:81e3690a09ee
- Child:
- 28:ee8094c22b43
File content as of revision 27:994c549bf33e:
#include "mbed.h" // Ajout de la librairie "mbed.h" DigitalOut myled(D3); // Définie la sortie nommé LED1 int main() { // fonction principale while(1) { // boucle pendant 1 myled = 1; // myled prend la valeur 1 wait(0.5); // attend 0.5 seconde myled = 0; // myled prend la valeur 0 wait(1.5); // attend 1.5 seconde } }