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
Timer.cpp
00001 #include "mbed.h" 00002 00003 Serial pc(USBTX, USBRX); 00004 DigitalIn btn(USER_BUTTON); 00005 Timer t; 00006 00007 int main() { 00008 while(true) { 00009 while(btn != 0); 00010 t.start(); 00011 while(btn != 1); 00012 t.stop(); 00013 pc.printf("%i us\n", t.read_us()); 00014 t.reset(); 00015 } 00016 }
Generated on Wed Jul 13 2022 21:24:51 by
1.7.2