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:
- ItaySharon
- Date:
- 2015-11-05
- Revision:
- 0:6d519aadd679
File content as of revision 0:6d519aadd679:
#include "mbed.h"
DigitalOut LED_1(LED1);
DigitalIn USR_BTN(PC_13);
int count = 1;
int main()
{
while(1) {
while(USR_BTN) {
}
for(int i = 0; i < count; i++) {
LED_1 = 1;
wait(0.2);
LED_1 = 0;
wait(0.2);
}
count++;
while(!USR_BTN) {
}
}
}