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 InterruptIn button(p5); 00003 DigitalOut led(LED1); 00004 DigitalOut flash(LED2); 00005 void flip(){ 00006 led=1; 00007 wait(0.2); 00008 led=0; 00009 wait(0.2); 00010 } 00011 00012 int main() { 00013 button.rise(&flip); 00014 while(1) { 00015 flash = 1; 00016 wait(0.2); 00017 led = 0; 00018 wait(0.2); 00019 } 00020 } 00021
Generated on Sat Jul 29 2023 09:20:12 by
1.7.2