资源简介

预览网址:https://www.cnblogs.com/luxiaoguogege/p/9848020.html 更多信息,

资源截图

代码片段和文件信息

/***************   writer:shopping.w   ******************/
#include 
#define uint unsigned int
#define uchar unsigned char
#define DATA P1
sbit OE  = P2^5;
sbit EOC = P3^3;
sbit ST  = P2^7;

sbit C1  = P3^0;
sbit C2  = P3^1;
sbit C3  = P3^2;

uint display_data = 0;  /*显示数据*/
uchar code LEDData[]=
{
  0x3f0x060x5b0x4f0x660x6d0x7d0x070x7f0x6f
};


void DelayMS(uint ms)
{
  uchar i;
while(ms--)
{
  for(i=0;i<120;i++);
}
}

void Display_Result(uint d)
{

  P2 = 0xf7;
P0 = LEDData[d%10];
DelayMS(5);
P2 = 0xfb;
P0 = LEDData[d%100/10];
DelayMS(5);
P2 = 0xfd;
P0 = (LEDData[d/100]| 0x80);
DelayMS(5);

P2 = 0xfe;
P0 = LEDData[3];
DelayMS(5);

}

void main()
{


C1  = 1;
C2  = 1;
C3  = 0;

while(1)
{

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-10-25 09:59  20 ADC0809模数转换与显示\
     文件         768  2009-08-12 10:48  20 ADC0809模数转换与显示\ADC0809模数转换与显示.PWI
     文件       22977  2018-10-20 10:10  20 ADC0809模数转换与显示\ADC0809模数转换与显示.pdsprj
     文件        2246  2018-10-25 10:11  20 ADC0809模数转换与显示\ADC0809模数转换与显示.pdsprj.4RWCYNPKUR2JXTX.Administrator.workspace
     文件       52901  2009-02-03 18:31  20 ADC0809模数转换与显示\Backup Of ADC0809模数转换与显示.DBK
     文件       23793  2018-10-20 08:47  20 ADC0809模数转换与显示\Backup Of ADC0809模数转换与显示.pdsbak
     文件      100355  2009-02-03 19:55  20 ADC0809模数转换与显示\Last Loaded ADC0809模数转换与显示.DBK
     文件       23062  2018-10-20 10:06  20 ADC0809模数转换与显示\Last Loaded ADC0809模数转换与显示.pdsbak
     目录           0  2018-10-25 09:58  20 ADC0809模数转换与显示\code\
     文件        4318  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20
     文件        2869  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.LST
     文件        6295  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.M51
     文件        3838  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.OBJ
     文件        1031  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.build_log.htm
     文件         969  2018-10-20 09:44  20 ADC0809模数转换与显示\code\20.c
     文件        2681  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.hex
     文件          36  2018-10-20 09:57  20 ADC0809模数转换与显示\code\20.lnp
     文件         508  2009-08-12 10:48  20 ADC0809模数转换与显示\code\20.plg
     文件      138261  2018-10-25 09:58  20 ADC0809模数转换与显示\code\20.uvgui.Administrator
     文件        5947  2018-10-19 08:43  20 ADC0809模数转换与显示\code\20.uvopt
     文件       13776  2018-10-19 08:43  20 ADC0809模数转换与显示\code\20.uvproj
     文件          19  2018-10-20 10:04  20 ADC0809模数转换与显示\code\ExtDll.iex

评论

共有 条评论

相关资源