FRDM-K64 ADC basic example using mbed

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

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);

    }

}

附件
无评分
版本历史
最后更新:
‎06-27-2014 11:13 AM
更新人: