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
00001 #include "mbed.h" 00002 00003 InterruptIn button(PB_13); 00004 DigitalOut led(LED2); 00005 00006 void flip() { 00007 led = !led; 00008 wait(0.1); 00009 } 00010 00011 int main() { 00012 button.mode(PullUp); 00013 wait(0.01); 00014 button.fall(&flip); // attach the address of the flip function to the rising edge 00015 led = 0; 00016 while(1) { // wait around, interrupts will interrupt this! 00017 00018 } 00019 }
Generated on Sun Jul 17 2022 06:57:42 by
1.7.2