Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Example_printf by
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
}