数码管动态显示数字
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
unsigned char code DIG_CODE[17] = {
0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
//0、1、2、3、4、5、6、7、8、9、A、b、C、d、E、F的显示码
{
DisplayData[i]=DIG_CODE[i];
}
while(1)
{
DigDisplay();
}
}
void DigDisplay()
{
unsigned char i,j;
for(i=0;i<8;i++)
{
GPIO_PLACE=DIG_PLACE[i];//位
GPIO_DIG=DisplayData[i];//段
Delay10ms(100); //55us
GPIO_DIG=0x00;//消隐
P2=(P2+1)%8;
if(i==8) i=0;
}
}
/*******************不用译码器****************************************/
#include<reg51.h>
unsigned char DisplayData[8];
//用来存放要显示的8位数的值
//--声明全局函数--//
void DigDisplay(); //动态显示函数
void delay(unsigned int t);
//main函数
void main()
{
unsigned char i;
for(i=0;i<8;i++)
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
void main()
{
unsigned char i=0;
P2=0x00;//位显示
while(1)
{
GPIO_DIG=DIG_CODE[i++]; //段显示
//--定义使用的IO口--//
#define GPIO_DIG P0//段选
#define GPIO_PLACE P1//位选
//--定义全局变量--//
unsigned char code DIG_PLACE[8] = {
0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};//位选控制查表的方法控制
unsigned char code DIG_CODE[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,
0x77,0x7c,0x39,0x5e,0x79,0x71};//共阴极数码管字型码0~F
void Delay10ms(unsigned int c) //误差0us
delay(50);//扫描间隔时间设定55us,相当于给当前数码管显示延时
GPIO_DIG = 0x00; //消隐:消除前一个数码管对后Baidu Nhomakorabea个的影响
}
}
void delay(unsigned int t)
{
while(--t);
}
/***********************用译码器*******************************************/
#include<reg51.h>
#define GPIO_DIG P0
sbit LSA=P2^0;
sbit LSB=P2^1;
sbit LSC=P2^2;
0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
//0、1、2、3、4、5、6、7、8、9、A、b、C、d、E、F的显示码
{
DisplayData[i]=DIG_CODE[i];
}
while(1)
{
DigDisplay();
}
}
void DigDisplay()
{
unsigned char i,j;
for(i=0;i<8;i++)
{
GPIO_PLACE=DIG_PLACE[i];//位
GPIO_DIG=DisplayData[i];//段
Delay10ms(100); //55us
GPIO_DIG=0x00;//消隐
P2=(P2+1)%8;
if(i==8) i=0;
}
}
/*******************不用译码器****************************************/
#include<reg51.h>
unsigned char DisplayData[8];
//用来存放要显示的8位数的值
//--声明全局函数--//
void DigDisplay(); //动态显示函数
void delay(unsigned int t);
//main函数
void main()
{
unsigned char i;
for(i=0;i<8;i++)
{
unsigned char a, b;
for (;c>0;c--)
{
for (b=38;b>0;b--)
{
for (a=130;a>0;a--);
}
}
}
void main()
{
unsigned char i=0;
P2=0x00;//位显示
while(1)
{
GPIO_DIG=DIG_CODE[i++]; //段显示
//--定义使用的IO口--//
#define GPIO_DIG P0//段选
#define GPIO_PLACE P1//位选
//--定义全局变量--//
unsigned char code DIG_PLACE[8] = {
0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};//位选控制查表的方法控制
unsigned char code DIG_CODE[17]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,
0x77,0x7c,0x39,0x5e,0x79,0x71};//共阴极数码管字型码0~F
void Delay10ms(unsigned int c) //误差0us
delay(50);//扫描间隔时间设定55us,相当于给当前数码管显示延时
GPIO_DIG = 0x00; //消隐:消除前一个数码管对后Baidu Nhomakorabea个的影响
}
}
void delay(unsigned int t)
{
while(--t);
}
/***********************用译码器*******************************************/
#include<reg51.h>
#define GPIO_DIG P0
sbit LSA=P2^0;
sbit LSB=P2^1;
sbit LSC=P2^2;