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 InterruptIn button(p18); // Interrupt on digital pushbutton input p18 00003 DigitalOut led1(p5); // digital out to p5 00004 void toggle(void); // function prototype 00005 int main() { 00006 button.rise(&toggle); // attach the address of the toggle 00007 } // function to the rising edge 00008 void toggle() { 00009 led1=!led1; 00010 }
Generated on Wed Jul 13 2022 20:34:00 by
1.7.2