the first

main.cpp

Committer:
icchong
Date:
2018-09-16
Revision:
1:5f9cd5aa577f
Parent:
0:37df34174027

File content as of revision 1:5f9cd5aa577f:

#include <mbed.h>

DigitalOut myLed(LED1);

int main(int argc, char* argv[])
{
    while (true) {
        myLed = !myLed;
        wait(0.5);
    }
}