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:
- snec_student
- Date:
- 2020-07-25
- Revision:
- 30:a2e555dce5d4
- Parent:
- 29:45c879f917cf
- Child:
- 31:544222440267
File content as of revision 30:a2e555dce5d4:
#include "mbed.h"
DigitalOut Led_verte(D2);
DigitalIn BP2(D3);
DigitalOut Led_rouge(PTB22);
DigitalIn BP3(SW3);
int main() {
while(1) {
if (BP2==0) // si le BP2 est relaché
{
Led_verte=0; // on éteint la led }
else // sinon
{
Led_verte=1; // on allume la led
}
} // fin boucle infinie
} // fin programme