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 /* Program: A simple Timer 00002 Activate Tera Term terminal to test. 00003 */ 00004 #include "mbed.h" 00005 Timer t; // define Timer with name “t” 00006 Serial pc(USBTX, USBRX); 00007 int main() { 00008 t.start(); //start the timer 00009 pc.printf("Hello World!\n"); 00010 t.stop(); //stop the timer 00011 pc.printf("The time taken was %f seconds\n", t.read()); //print to pc 00012 }
Generated on Tue Jul 26 2022 00:54:31 by
1.7.2