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.
Dependencies: mbed
Fork of Serial_HelloWorld_Mbed by
main.cpp
00001 /* an example for scanf() & printf() */ 00002 00003 #include "mbed.h" 00004 00005 Serial pc(USBTX, USBRX); // tx, rx 00006 00007 int main() { 00008 int num; 00009 while(1) { 00010 pc.printf("Input any integer number: "); 00011 pc.scanf("%d", &num); 00012 pc.printf("\r\nnum = %d\r\n", num); 00013 pc.printf("num^2 = %d\r\n", num*num); 00014 } 00015 }
Generated on Tue Jul 12 2022 19:31:49 by
1.7.2
