nikita kulkarni / Mbed 2 deprecated mbed_lib

Dependencies:   mbed

main.cpp

Committer:
nikita14
Date:
2016-12-01
Revision:
0:7f86087ff2c9

File content as of revision 0:7f86087ff2c9:

#include "mbed.h"
 
DigitalOut pin(LED2);
 
int main() {
    
 
   
    for(int i=0; i<10; i++) {
        pin = !pin;
        wait(0.2);
    }
 
 
    for(int i=0; i<4; i++) {
        pin = !pin;
        wait(0.2);
    }
}