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 00003 AnalogIn analog_value(A0); 00004 00005 DigitalOut led(LED1); 00006 00007 int main() { 00008 float meas, distance; 00009 00010 printf("\nAnalogIn example\n\r"); 00011 00012 while(1) { 00013 meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0) 00014 meas = meas * 3300; // Change the value to be in the 0 to 3300 range 00015 distance = meas/3.2; 00016 printf("measure = %.0f mV %0.f cm\n\r", meas, distance); 00017 wait(0.2); // 200 ms 00018 } 00019 }
Generated on Mon Jul 25 2022 12:41:07 by
1.7.2