port

Dependencies:   mbed

Fork of HelloWorld by Simon Ford

main.cpp

Committer:
ashchitragar
Date:
2016-12-01
Revision:
2:7c55264e0187
Parent:
0:fb6bbc10ffa0

File content as of revision 2:7c55264e0187:

#include "mbed.h"
 
DigitalOut pin(LED2);
 
int main() {
    // do something...
 
    // flash 5 times
    for(int i=0; i<10; i++) {
        pin = !pin;
        wait(0.2);
    }
 
    // do something else
 
    // flash 2 times
    for(int i=0; i<4; i++) {
        pin = !pin;
        wait(0.2);
    }
 
    // do another thing
}