y
Dependencies: HSI2RGBW_PWM mbed fct_aide FastAnalogIn mbed-dsp NVIC_set_all_priorities
main.c@2:da7147094d21, 2019-06-03 (annotated)
- Committer:
- achille
- Date:
- Mon Jun 03 12:05:02 2019 +0000
- Revision:
- 2:da7147094d21
- Parent:
- main.cpp@1:924f6cf87f06
- Child:
- 5:759f136d8f48
- Child:
- 7:8a2a7633224b
new file
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jahfresh | 0:f23ecbd3f3b5 | 1 | #include "mbed.h" |
jahfresh | 0:f23ecbd3f3b5 | 2 | |
jahfresh | 0:f23ecbd3f3b5 | 3 | AnalogIn analog_value(A0); |
jahfresh | 0:f23ecbd3f3b5 | 4 | |
jahfresh | 0:f23ecbd3f3b5 | 5 | DigitalOut led(LED1); |
jahfresh | 0:f23ecbd3f3b5 | 6 | |
jahfresh | 0:f23ecbd3f3b5 | 7 | int main() { |
jahfresh | 0:f23ecbd3f3b5 | 8 | float meas; |
jahfresh | 0:f23ecbd3f3b5 | 9 | |
jahfresh | 0:f23ecbd3f3b5 | 10 | printf("\nAnalogIn example\n"); |
jahfresh | 0:f23ecbd3f3b5 | 11 | |
jahfresh | 0:f23ecbd3f3b5 | 12 | while(1) { |
jahfresh | 0:f23ecbd3f3b5 | 13 | meas = analog_value.read(); // Converts and read the analog input value (value from 0.0 to 1.0) |
jahfresh | 0:f23ecbd3f3b5 | 14 | meas = meas * 3300; // Change the value to be in the 0 to 3300 range |
jahfresh | 0:f23ecbd3f3b5 | 15 | printf("measure = %.0f mV\n", meas); |
jahfresh | 0:f23ecbd3f3b5 | 16 | if (meas > 2000) { // If the value is greater than 2V then switch the LED on |
jahfresh | 0:f23ecbd3f3b5 | 17 | led = 1; |
jahfresh | 0:f23ecbd3f3b5 | 18 | } |
jahfresh | 0:f23ecbd3f3b5 | 19 | else { |
jahfresh | 0:f23ecbd3f3b5 | 20 | led = 0; |
jahfresh | 0:f23ecbd3f3b5 | 21 | } |
jahfresh | 1:924f6cf87f06 | 22 | wait(0.2); // 200 ms test |
jahfresh | 0:f23ecbd3f3b5 | 23 | } |
jahfresh | 0:f23ecbd3f3b5 | 24 | } |