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
- Committer:
- bcostm
- Date:
- 2017-09-27
- Revision:
- 0:c8c068641d77
- Child:
- 1:352debc405fd
File content as of revision 0:c8c068641d77:
#include "mbed.h" AnalogIn analog_value(A0); DigitalOut led(LED1); int main() { float meas_r; float meas_v; printf("\nAnalogIn example\n"); while(1) { meas_r = analog_value.read(); // Read the analog input value (value from 0.0 to 1.0 = full ADC conversion range) meas_v = meas_r * 3300; // Converts value in the 0V-3.3V range // Display values printf("measure = %f = %.0f mV\n", meas_r, meas_v); // LED is ON is the value is below 1V if (meas_v < 1000) { led = 1; // LED ON } else { led = 0; // LED OFF } wait(1.0); // 1 second } }