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:
- AkashRaj
- Date:
- 2015-02-15
- Revision:
- 0:e34097f81667
File content as of revision 0:e34097f81667:
#include "mbed.h" DigitalOut myleds[]={LED1,LED2,LED3,LED4}; int main() { int i; while(1) { for(i=0; i<4; i++) { myleds[i]=1; wait(.2); } for(i=0; i<4; i++) { myleds[i]=0; wait(.2); } } }