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.
Fork of mbed_blinky_test by
main.cpp
- Committer:
- norbianisa
- Date:
- 2015-07-23
- Revision:
- 2:fe292556d4d5
- Parent:
- 1:82015014865c
File content as of revision 2:fe292556d4d5:
#include "mbed.h" DigitalOut myled(LED1); DigitalOut myled2(LED2); int main() { int i=0; while(1) { myled = i & 1; myled2 = i & 2; wait(0.25); i++; } }