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 InterruptIn button(USER_BUTTON); 00004 DigitalOut led(LED1); 00005 DigitalOut heartbeat(LED2); 00006 00007 void toggle() { 00008 led = !led; 00009 } 00010 00011 int main() { 00012 button.rise(&toggle); // Call toggle function on the rising edge 00013 while(1) { // Wait around, interrupts will interrupt this! 00014 heartbeat = !heartbeat; 00015 wait(0.25); 00016 } 00017 }
Generated on Sun Aug 28 2022 02:55:08 by
1.7.2