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:
- hasimo
- Date:
- 2014-07-23
- Revision:
- 0:ff8004800027
File content as of revision 0:ff8004800027:
#include "mbed.h" Timeout timeout; DigitalOut led(LED1); int on = 1; void attimeout(){ on = 0; } int main() { timeout.attach(&attimeout, 5); // spin in a main loop. flipper will interrupt it to call flip while(on) { led = !led; wait(0.2); } }