LED blinky test with WIZwiki-W7500

Dependencies:   mbed

main.cpp

Committer:
kzl108
Date:
2015-07-22
Revision:
0:a2158c5dcbb6

File content as of revision 0:a2158c5dcbb6:

#include "mbed.h"

DigitalOut myled(LED1);

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