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:
- xavier_majorel
- Date:
- 2020-09-09
- Revision:
- 33:710cfcf55052
- Parent:
- 32:4d02d78d0c44
File content as of revision 33:710cfcf55052:
#include "mbed.h" DigitalOut Led_blanche(D2); DigitalIn BP2(D3); int main() { while(1) { if (BP2==1) { Led_blanche=1; } else { Led_blanche=0; } } // fin de boucle infinie } // fin programme