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:
- 0:d3ea274bc4c5
File content as of revision 0:d3ea274bc4c5:
#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);
}
}