Proteus仿真ATMEGA16 ADC转化数码管显示

Posted perseverance52

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Proteus仿真ATMEGA16 ADC转化数码管显示相关的知识,希望对你有一定的参考价值。

【Proteus仿真】ATMEGA16 ADC转化数码管显示


注意这是ATMEGA16AVR型号的单片机,不能在Keil平台上进行开发和编译的。

  • Proteus仿真

  • 所使用的编译软件ICCAVR

不懂的可以参考《AVR单片机ATMEGA16编译软件ICCAVR的使用技巧与应用示例

  • 型号选择:

  • 编译信息

程序源码

//ICC-AVR application builder : 2022/5/14 19:56:22
// Target : M16
// Crystal: 4.0000Mhz

#include<iom16v.h>
#define uchar unsigned char
#define uint  unsigned int


uchar Table[10]=0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f;
uchar Data[4]=0,0,0,0;

void DelayMs(uint i)  //0.25ms
uchar j;
 for(;i!=0;i--)
  for(j=250;j!=0;j--) ;


void Display(uchar *p) //间隔5ms显示
uchar i,sel=0x01;
 for(i=0;i<4;i++)
  PORTD=sel;
   PORTB=0xff-Table[p[i]];
   DelayMs(10);
   sel=sel<<1;
  


uint ADC_Convert(void)
uint temp1,temp2;
 temp1=(uint)ADCL;
 temp2=(uint)ADCH;
 temp2=(temp2<<8)+temp1;
 return(temp2);


void Process(uint i,uchar *p)
p[0]=i/1000;
 i=i%1000;
 p[1]=i/100;
 i=i%100;
 p[2]=i/10;
 i=i%10;
 p[3]=i;


void main(void)
uint i;
 DDRA=0x00;                    //设置A口为不带上拉输入;
 PORTA=0x00;
 DDRB=0xff;                    //设置B口为推挽1输出;
 PORTB=0xff;
 DDRD=0xff;                    //设置C口为推挽1输出;
 PORTD=0xff;
 PORTB=0x00;                   //B口初始化输出1;C口初始化输出0;点亮全部数码管;
 PORTD=0xff;
 ADMUX=0x01;                   //选择第二通道ADC1;
 ADCSR=0xe6;                   //125K转换速率,自由转换模式;启动AD转换器;
 DelayMs(3000);                //延时待系统稳定;
 while(1)
 i=ADC_Convert();
  Process(i,Data);
  Display(Data);

 


程序源码和仿真资源

链接:https://pan.baidu.com/s/1NG1c7U9OG-hYqsbVb8Xakw 
提取码:42ko

以上是关于Proteus仿真ATMEGA16 ADC转化数码管显示的主要内容,如果未能解决你的问题,请参考以下文章

Proteus仿真51单片机+DAC0832+数码管制作0-25V电压可调

Proteus8.9仿真ADC0832的问题

Proteus8.9仿真ADC0832的问题

51单片机ADC0832模数转换+ LCD12864显示+Proteus仿真

Proteus仿真51单片机+4X4矩阵按键扫描+数码管0-F显示

Proteus仿真步进电机转速数码管显示