/ Mbed 2 deprecated Example_printf

Dependencies:   mbed

main.cpp

Committer:
mbedAustin
Date:
2014-11-24
Revision:
2:b0ec6da021f0
Parent:
1:039688a53fff

File content as of revision 2:b0ec6da021f0:

//
// This program prints "Hello World" to the terminal
//
#include "mbed.h"
 
DigitalOut led(LED1);

int main() {
    printf("Hello World!\n\r");
    while(1){
        led = 1;
        wait(1);
        led = 0;
        wait(1);
    }
    // Do nothing
}