BITS IOT PGP 2017-18 / Mbed 2 deprecated mbed_blinky1

Dependencies:   mbed

Fork of mbed_blinky by Rahul Sharma

main.cpp

Committer:
Rahul091093
Date:
2018-06-18
Revision:
0:058c5d2a4e7a
Child:
1:a1dbb22fe5d0

File content as of revision 0:058c5d2a4e7a:

#include "mbed.h"

DigitalOut myled(PD_15);


int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}