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 AnalogIn Ain(A0); 00004 float ADCdata; 00005 00006 00007 int main() { 00008 pc.printf("ADC Data Values..."); //penso a uno vero 00009 00010 while(1) { 00011 ADCdata=Ain*3.3; 00012 wait(0.5); 00013 pc.printf("%1.3f",ADCdata); 00014 pc.printf("V/n/r"); 00015 } 00016 }
Generated on Sun Jul 31 2022 04:10:45 by
1.7.2