找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

74hc595的c51驱动程序

[复制链接]
admin 发表于 2012-9-2 12:40:00 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
//定时器晶体振荡器11.0592M.
#i nclude<reg51.h>
#i nclude <INTRINS.H>
#define uint unsigned int
#define uchar unsigned char
#define nop() _nop_();_nop_();

sbit CLK=P2^0;
sbit DAT=P2^1;
sbit RCLK=P2^2;
//sbit CS=P2^3;


uchar code tab[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xbf,0xff};//0-9,-,全灭



void sendbyte(uchar byte)
{
uchar num,c;
num=tab[byte];

for(c=0;c<8;c++)
{
CLK=0;
DAT=num&0x80;
num=num<<1;

CLK=1;
}
// RCLK=0;
// nop();
// nop();
// RCLK=1;

}

void out595(void)
{
RCLK=0;
nop();
RCLK=1;
}

void display(uchar word)
{
uchar i,j;
i=word/10;
j=word-10*i;
sendbyte(j);
sendbyte(i);
out595();
}


main()
{
while(1)
{
display(19);
display(86);
}
while(1);

}
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-11-24 23:49 , Processed in 0.056433 second(s), 9 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表