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 Serial pc(USBTX,USBRX); 00003 00004 AnalogIn Temp(p15); 00005 00006 int main() 00007 { 00008 while(1) { 00009 float a=Temp.read(); 00010 float temperature=((a*3300-2629.42504)/(-13.74697)); 00011 pc.printf("%f\n",Temp.read()); 00012 pc.printf("%f\n",temperature); 00013 00014 wait(6.0); 00015 } 00016 00017 00018 }
Generated on Tue Jul 26 2022 09:41:24 by
1.7.2