y
Dependencies: HSI2RGBW_PWM mbed fct_aide FastAnalogIn mbed-dsp NVIC_set_all_priorities
Diff: main.c
- Revision:
- 7:8a2a7633224b
- Parent:
- 2:da7147094d21
- Child:
- 8:e576f4eea51b
--- a/main.c Mon Jun 03 12:27:06 2019 +0000 +++ b/main.c Mon Jun 03 13:10:11 2019 +0000 @@ -1,24 +1,4 @@ #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 - printf("measure = %.0f mV\n", meas); - if (meas > 2000) { // If the value is greater than 2V then switch the LED on - led = 1; - } - else { - led = 0; - } - wait(0.2); // 200 ms test - } }