代码搜索:共阴极数码管
找到约 10,000 项符合「共阴极数码管」的源代码
代码结果 10,000
www.eeworm.com/read/440764/7681713
obj 数码管演示.obj
www.eeworm.com/read/440080/7694119
按键设置数码管
www.eeworm.com/read/440080/7694133
按键设置数码管
www.eeworm.com/read/439706/7702590
txt ad=数码管.txt
楼主
--------------------------------------------------------------------------------
AD采样转两位数码管显示程序这是我写的AD转换程序,给不会AD转换的初学者参考借鉴,有错误的地方请大家指正。谢谢给予我帮助的朋友们!
建议大家想看程序的时候,最好复制到文本文档,这样相应的程序命令才能对齐,方便阅
www.eeworm.com/read/195765/8132443
jpg 数码管时钟.jpg
www.eeworm.com/read/246926/12697695
doc 数码管仿真.doc
www.eeworm.com/read/246926/12697696
vi 数码管仿真.vi
www.eeworm.com/read/485633/6555534
txt 数码管显示.txt
#include
//宏定义
#define uint unsigned int
#define uchar unsigned char
//特殊位定义
sbit P24=P2^4;
sbit P25=P2^5;
sbit P26=P2^6;
sbit P27=P2^7;//位选
//编码 共阳数码管
uchar code table[]=
{
0x
www.eeworm.com/read/485649/6555685
c 数码管时钟.c
#include
sbit a0=P1^0;
sbit a1=P1^1;
sbit a2=P1^2;
sbit a3=P1^3; //定义按键值
static char Lie[4]={0xef,0xdf,0xbf,0x7f}; //按键值的扫描
/////////
char LEDXS[8];
static
www.eeworm.com/read/478741/6701959
txt 数码管记数.txt
START: MOV r2,#0
L0: MOV A,R2
MOV DPTR,#TAB
MOVC A,@A+DPTR
MOV P2,A
JB P1.0,$
INC R2
JNB P1.0,$
CJNE R2,#10,L0
SETB P3.0
LCALL DELAY
SJMP START
TAB: DB 40h,79h,24h,30h,19h,12h,02