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 #include "mbed.h" 00002 DigitalOut led(D2); 00003 Serial pc(USBTX, USBRX); 00004 00005 int main(){ 00006 pc.baud(9600); 00007 while(1){ 00008 led = !led; 00009 pc.printf("\nHello World !\n"); 00010 pc.printf("\nLED pin is: "); 00011 int c=led; 00012 pc.printf("%d",c); 00013 pc.printf("\nBYE!"); 00014 wait(1); 00015 } 00016 }
Generated on Thu Jan 19 2023 08:32:32 by
1.7.2