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
- Committer:
- hughbellinger
- Date:
- 2022-05-22
- Revision:
- 1:ae75c5bfd6c6
- Parent:
- 0:679afb0ef65b
File content as of revision 1:ae75c5bfd6c6:
#include "mbed.h" InterruptIn button(p5); DigitalOut led(LED1); DigitalOut flash(LED2); void flip(){ led=1; wait(0.2); led=0; wait(0.2); } int main() { button.rise(&flip); while(1) { flash = 1; wait(0.2); led = 0; wait(0.2); } }