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 #include"IRsensor.h" 00003 00004 IRsensor ir1(PA_1); 00005 00006 Serial pc(USBTX,USBRX); 00007 Timer t; 00008 00009 int main() 00010 { 00011 while(1){ 00012 t.reset(); 00013 t.start(); 00014 float dis = ir1.getDistance(3); 00015 pc.printf("dis:%4.4f[cm]||t:%d[us]\n\r",dis,t.read_us()); 00016 00017 } 00018 }
Generated on Sat Aug 20 2022 12:17:15 by
1.7.2