Itay Sharon / Mbed 2 deprecated LED_counter

Dependencies:   mbed

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) {

        }
    }
}