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.
main.cpp
00001 #include "mbed.h" 00002 00003 int flag = 0; 00004 00005 void truc(void){ 00006 flag = !flag; 00007 } 00008 00009 int main(void){ 00010 DigitalOut led(LED1); 00011 InterruptIn btn(D3); 00012 led = 0; 00013 00014 btn.rise(truc); 00015 while(1){ 00016 if(flag != 0){ 00017 led = !led; 00018 wait(0.15); 00019 }else{ 00020 led = 0; 00021 } 00022 } 00023 }
Generated on Sun Jul 31 2022 19:59:12 by
1.7.2