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 DigitalOut ledB(LED1); 00004 InterruptIn button1(p15); 00005 00006 void lighton() 00007 { 00008 ledB = 0; 00009 } 00010 void lightoff() 00011 { 00012 ledB = 1; 00013 } 00014 00015 int main() 00016 { 00017 ledB = 1; 00018 button1.mode(PullUp); 00019 button1.fall(&lighton); 00020 button1.rise(&lightoff); 00021 while(1) 00022 { 00023 00024 } 00025 }
Generated on Fri Jul 15 2022 15:36:15 by
1.7.2