hello world example project

Dependencies:   mbed

main.cpp

Committer:
marcozecchini
Date:
2019-02-23
Revision:
0:484f8bff8521

File content as of revision 0:484f8bff8521:

#include "mbed.h"

/*------------------------------------------------------------------------------

-- HelloWorld example

    Printing hello world and toggling LED1
    
------------------------------------------------------------------------------*/

DigitalOut led(LED1);

int main()
{
    int i = 1;

    printf("Hello World !\n");

    while(1) {
        wait(1); // 1 second
        led = !led; // Toggle LED
        printf("This program runs since %d seconds.\n", i++);
    }
}