您的位置 首页 观点

AVR与VB通讯模拟量输入简略程序

—————————————-AVR代码————————includeiom16h>includeintrins

//—————————————-AVR代码————————
#include
#include
#define uchar unsigned char
#define uint unsigned int
uchar seg[10]={0x3f,0x06,0x5b, //共阴极数码管0~9的字形码
0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
uchar tab[4]={0xfe,0xfd,0xfb,0xf7};//4位共阴极数码管的位选码
#define UDRE 5
#define RXC 7
uchar datt; //接受到的数据比较变量
uchar adc_val; //模拟量转化值
void delay(uint k)
{
while(k–);
}
void port_init()
{
PORTA=0x7f; // 通道7作为模拟量输入
DDRA=0x7f;
PORTB=0xff;
DDRB=0xff;
PORTC=0xff;
DDRC=0xff;
PORTD=0xff;
DDRD=0xff;
}
void adc_init() //模拟量初始化
{
ADCSRA=0xe3;
ADMUX=0xc7;
}
uint adc_vert()
{
uint temp1,temp2;
temp1=(uint)ADCL;
temp2=(uint)ADCH;
temp2=(temp2<<8)+temp1;
return temp2;
}
void time0_init() //定时器0初始化
{
TCNT0=0x83;
TCCR0=0x03;
TIMSK=0x01; //定时器0溢出中止
}
#pragma vector = 0x24
__interrupt void time0_vef()
{
static uchar i;
TCNT0=0x83;
i++;
if(i>3)i=0;
switch(i)
{
case 0:PORTA=seg[adc_val%10];PORTC=tab[0];break;
case 1:PORTA=seg[adc_val%100/10];PORTC=tab[1];break;
case 2:PORTA=seg[adc_val%1000/100];PORTC=tab[2];break;
case 3:PORTA=seg[adc_val/1000];PORTC=tab[3];break;
default:break;
}
}

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/news/guandian/318344.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部