ADC0809模數(shù)轉(zhuǎn)換測試程序
#include
#define uint unsigned int
sbit a=P1^0;
sbit st=P1^1;
sbit en=P1^2;
void delay(uint z)//延時(shí)
{
uint x,y;
for(x=110;x>0;x--)
for(y=z;y>0;y--);
}
void start()//啟動(dòng)AD轉(zhuǎn)換
{
st=0;
delay(10);
st=1;
delay(10);
st=0;
delay(10);
}
void init()//選擇輸入模擬通道
{
a=0;
}
void main()
{
init();
while(1)
{
start();
en=0;
delay(10);
en=1;
P2=P0;//將數(shù)字量輸入到LED
delay(10);
}
}
評論