1127530_en-US

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

1127530_en-US

1127530_en-US

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

    }

}

Freedom Development PlatformKinetis K Series MCUs
标记 (1)
无评分
版本历史
最后更新:
‎11-19-2025 10:29 AM
更新人: