Austin Blackstone / Mbed 2 deprecated Example_printf_FixForSomething

Dependencies:   mbed

Fork of Example_printf by -deleted-

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 //
00002 // This program prints "Hello World" to the terminal
00003 //
00004 #include "mbed.h"
00005  
00006 DigitalOut led(LED1);
00007 
00008 int main() {
00009     printf("Hello World!\n\r");
00010     while(1){
00011         led = 1;
00012         wait(1);
00013         led = 0;
00014         wait(1);
00015     }
00016     // Do nothing
00017 }