Shohei Aoki / Mbed 2 deprecated Nucleo_read_analog_value

Dependencies:   mbed

main.cpp

Committer:
shohei
Date:
2017-04-19
Revision:
0:edd7381b2975

File content as of revision 0:edd7381b2975:

#include "mbed.h"
 
AnalogIn analog_value(A0);
DigitalOut led(LED1);


int main() {
    float meas;
    
    printf("\nAnalogIn example\n");
    
    while(1) {
        meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0)
        //meas = meas * 3300; // Change the value to be in the 0 to 3300 range
        meas = meas * 5000; // Change the value to be in the 0 to 3300 range
        printf("%.0f mV\n", meas);
        wait(1);
    }
}