模数转换ADC0832、ADC0808和ADC0809的利用
作者:时间:2016-11-30来源:网络
void display(uint dat)
{
P3=0x04;
P0=tab[dat/100];
P0 &=0x7f;//实现带小数点位显示小数点。
delay(1);
P0=0xff;
P3=0x02;
P0=tab[dat%100/10];
delay(1);
P0=0xff;
P3=0x01;
P0=tab[dat%10];
delay(1);
P0=0xff;
}
void main()
{
P3=0xFF;
P0=0xff;
while(1)
{
choiceADC(0);
delay(1);
display(vvv);
}
#include#include#define uchar unsigned char
#define uint unsigned int
sbit OE =P2^7;
sbit EOC =P2