FRDM-K64 ADC basic example using mbed

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

FRDM-K64 ADC basic example using mbed

FRDM-K64 ADC basic example using mbed

Here you will find both the code and project files for the ADC project. This project configures the ADC to perform single conversions, by default this is performed using a 16 bit configuration. The code uses ADC0, channel 12, once the conversion is finished it is displayed at the serial terminal.

Code:

#include "mbed.h"

AnalogIn AnIn(A0);

DigitalOut led(LED1);

Serial pc(USBTX,USBRX);

float x;

int main()

{

    pc.printf(" ADC demo code\r\n");

    while (1)

    {

    x=AnIn.read();

    pc.printf("ADC0_Ch12=(%d)\r\n", x);

    wait(.2);

    }

}

Attachments
No ratings
Version history
Last update:
‎06-27-2014 11:13 AM
Updated by: