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.
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 }
Generated on Sat Jul 23 2022 12:40:25 by
1.7.2