当前位置:首页 > 单片机 > 单片机
[导读]proteus仿真之DS1302+LCD1602显示试验仿真效果图为:C语言源程序如下:/*51单片机:DS1302+LCD1602 Proteus 仿真程序。功能:LCD1602时钟与日期的显示。仿真结果:LCD1602显示设定的时间与日期。*/#include /*******

proteus仿真之DS1302+LCD1602显示试验

仿真效果图为:



C语言源程序如下:


/*
51单片机:DS1302+LCD1602 Proteus 仿真程序。
功能:LCD1602时钟与日期的显示。


仿真结果:LCD1602显示设定的时间与日期。


*/


#include


/**********LCD1602接口程序**********/


#defineLCD_PORTP1 //液晶LCD1602数据
sbit RS = P2^4;
sbit RW = P2^5;
sbit E = P2^6;


char data str1[16]="Date: ";
char data str2[16]="Time: ";


sbit SCK = P3^6; // DS1302时钟线
sbit SDA = P3^4; // DS1302数据线
sbit RST = P3^5; // DS1302复位线


//DS1302 复位重定义
#define RST_CLR RST=0//电平置低
#define RST_SET RST=1//电平置高


//DS1302 数据
#define SDA_CLR SDA=0//电平置低
#define SDA_SET SDA=1//电平置高
#define SDA_RD SDA //电平读取


//DS1302 时钟
#define SCK_CLR SCK=0//时钟信号
#define SCK_SET SCK=1//电平置高


#define DS1302_SEC 0x80//秒数据地址
#define DS1302_MIN 0x82//分数据地址
#define DS1302_HOUR 0x84//时数据地址
#define DS1302_DATE 0x86//日数据地址
#define DS1302_MON 0x88//月数据地址
#define DS1302_DAY 0x8a//星期数据地址
#define DS1302_YEAR 0x8c//年数据地址
#define DS1302_CTRL 0x8e//控制数据地址
#define DS1302_CHARGE 0x90//涓流充电


bit ReadRTC_Flag; //读DS1302标志。1为读 0为不读。


unsigned char time_buf1[8] = {40,14,2,16,23,59,50,7};// -年月日时分秒周 2014-02-14 10:59:50 7周
unsigned char time_buf[8] ; // -年月日时分秒周




void DS1302_Init(void);
void DS1302_Write_Byte(unsigned char addr, unsigned char d);
unsigned char DS1302_Read_Byte(unsigned char addr) ;
void DS1302_Read_Time(void);
void DS1302_Write_Time(void);


void InitTIMER0(void);//inital timer0


void Delay_1ms(unsigned char i);
void Delay_10us(unsigned char i);
void Write_Cmd(unsigned char cmd);
void Write_Dat(unsigned char dat);
void Addr_x_y(unsigned char x,bit y);
void Show_Char(unsigned char x,bit y,unsigned char p);
void Show_String(unsigned char x,bit y,char *ptr);
void LCD_Init(void);








void main(void)
{
LCD_Init();
DS1302_Init();
DS1302_Write_Time();
InitTIMER0();
//P2=0xff; //51默认为输入
while(1)
{

if(ReadRTC_Flag==1)
{
ReadRTC_Flag=0;
DS1302_Read_Time();
}


str1[5]=time_buf1[1]/10 + '0';//年 数据的转换,
str1[6]=time_buf1[1]%10 + '0';//因我们采用数码管0~9的显示,将数据分开
str1[7]=0x2d; //加入"-"
str1[8]=time_buf1[2]/10 + '0';//月
str1[9]=time_buf1[2]%10 + '0';
str1[10]=0x2d;
str1[11]=time_buf1[3]/10 + '0';//日
str1[12]=time_buf1[3]%10 + '0';
str1[13]=0x20;
str1[14]='W';
str1[15]=time_buf1[7] + '0';//周几




str2[5]=time_buf1[4]/10 + '0';//时 数据的转换,
str2[6]=time_buf1[4]%10 + '0';//因我们采用数码管0~9的显示,将数据分开
str2[7]=0x3a; //加入"-"
str2[8]=time_buf1[5]/10 + '0';//分
str2[9]=time_buf1[5]%10 + '0';
str2[10]=0x3a;
str2[11]=time_buf1[6]/10 + '0';//秒
str2[12]=time_buf1[6]%10 + '0';


Show_String(0,0,str1);
Show_String(0,1,str2);

}
}






/********************************/
void Delay_1ms(unsigned char i) //最小延时1ms
{
unsigned char j;
while(i--)
for(j=0;j<125; j++);
}
void Delay_10us(unsigned char i) //最小延时10us
{
unsigned char j;
while(i--)
for(j=0;j<10; j++);
}


void Write_Cmd(unsigned char cmd) //写指令
{
Delay_10us(5);
E=0;
RS=0;
RW=0;
LCD_PORT = cmd;
Delay_10us(5); //>40us
E=1;
Delay_1ms(2); //>150us
E=0;
Delay_10us(4); //>25+10us
}


void Write_Dat(unsigned char dat) //写数据
{
Delay_10us(5);
E=0;
RS=1;
RW=0;
LCD_PORT = dat;
Delay_10us(5);
E=1;
Delay_10us(5);
E=0;
Delay_10us(4);
}




void Addr_x_y(unsigned char x,bit y) //写坐标,定位置
{
unsigned char temp=0x80;//默认最高位:D7为1 即以0x80开始。
if(y) //y :0为第一行 1为第二行
{
temp"=0x40;
}
temp|=x;
Write_Cmd(temp);
}




void Show_Char(unsigned char x,bit y,unsigned char p)


//在指定位置显示一个字符。
{
Addr_x_y(x,y);
Write_Dat(p);
}


void Show_String(unsigned char x,bit y,char *ptr)
{
unsigned char i;
for (i=0;i<16;i++)
Show_Char(x++,y,*(ptr+i));//循环显示16个字符
}




void LCD_Init(void) //1602初始化代码
{
Delay_1ms(1500);
Write_Cmd(0x38);
Delay_1ms(5);
Write_Cmd(0x38);
Delay_1ms(5);
Write_Cmd(0x38);
Delay_1ms(5);
Write_Cmd(0x38);
Write_Cmd(0x08);
Write_Cmd(0x06);
Write_Cmd(0x0c);
Write_Cmd(0x01);
}




/*------------------------------------------------
DS1302初始化
------------------------------------------------*/
void DS1302_Init(void)
{
RST_CLR; //RST脚置低
SCK_CLR; //SCK脚置低
DS1302_Write_Byte(DS1302_SEC,0x00);
}


/*------------------------------------------------
向DS1302写入一字节数据
------------------------------------------------*/
void DS1302_Write_Byte(unsigned char addr, unsigned char dat)
{
unsigned char i;
RST_SET;
addr = addr & 0xFE; //写地址 最低位为W写,低电平
for (i = 0; i < 8; i++)
{
if (addr & 0x01)
{
SDA_SET;
}
else
{
SDA_CLR;
}
SCK_SET;
SCK_CLR;
addr = addr >> 1;
}

//写入数据:dat
for (i = 0; i < 8; i ++)
{
if (dat & 0x01)
{
SDA_SET;
}
else
{
SDA_CLR;
}
SCK_SET;
SCK_CLR;
dat = dat >> 1;
}
RST_CLR; //停止DS1302总线
}




/*------------------------------------------------
从DS1302读出一字节数据
------------------------------------------------*/


unsigned char DS1302_Read_Byte(unsigned char addr)
{


unsigned char i;
unsigned char temp;
RST_SET;

addr = addr | 0x01;//最低RD,有效为高电平
for (i = 0; i < 8; i ++)
{
if (addr & 0x01)
{
SDA_SET;
}
else
{
SDA_CLR;
}
SCK_SET;
SCK_CLR;
addr = addr >> 1;
}

//输出数据:temp
for (i = 0; i < 8; i ++)
{
temp = temp >> 1;
if (SDA_RD)
{
temp |= 0x80;
}
else
{
temp &= 0x7F;
}
SCK_SET;
SCK_CLR;
}

RST_CLR; //停止DS1302总线
return temp;
}




/*------------------------------------------------
从DS1302读出时钟数据
------------------------------------------------*/
void DS1302_Read_Time(void)
{
unsigned char i,tmp;
time_buf[1]=DS1302_Read_Byte(DS1302_YEAR);//年
time_buf[2]=DS1302_Read_Byte(DS1302_MON);//月
time_buf[3]=DS1302_Read_Byte(DS1302_DATE);//日
time_buf[4]=DS1302_Read_Byte(DS1302_HOUR);//时
time_buf[5]=DS1302_Read_Byte(DS1302_MIN);//分
time_buf[6]=(DS1302_Read_Byte(DS1302_SEC))&0x7F;//秒
time_buf[7]=DS1302_Read_Byte(DS1302_DAY);//周


for(i=0;i<8;i++)
{ //BCD处理
tmp=time_buf[i]/16;
time_buf1[i]=time_buf[i]%16;
time_buf1[i]=time_buf1[i]+tmp*10;
}
}




/*------------------------------------------------
向DS1302写入时钟数据
------------------------------------------------*/
void DS1302_Write_Time(void)
{

unsigned char i,tmp;
for(i=0;i<8;i++)
{ //BCD处理
tmp=time_buf1[i]/10;
time_buf[i]=time_buf1[i]%10;
time_buf[i]=time_buf[i]+tmp*16;
}
DS1302_Write_Byte(DS1302_CTRL,0x00);//关闭写保护
DS1302_Write_Byte(DS1302_SEC,0x80);//暂停
//DS1302_Write_Byte(DS1302_CHARGE,0xa9);//涓流充电
DS1302_Write_Byte(DS1302_YEAR,time_buf[1]);//年
DS1302_Write_Byte(DS1302_MON,time_buf[2]);//月
DS1302_Write_Byte(DS1302_DATE,time_buf[3]);//日
DS1302_Write_Byte(DS1302_HOUR,time_buf[4]);//时
DS1302_Write_Byte(DS1302_MIN,time_buf[5]);//分
DS1302_Write_Byte(DS1302_SEC,time_buf[6]);//秒
DS1302_Write_Byte(DS1302_DAY,time_buf[7]);//周
DS1302_Write_Byte(DS1302_CTRL,0x80);//打开写保护
}


/*------------------------------------------------
Timer0 初始化,开中断,2ms定时
------------------------------------------------*/
void InitTIMER0(void)
{
TMOD|=0x01; //定时器设置 16位
TH0=(65536-2000)/256;//定时时间 2ms
TL0=(65536-2000)%256;
EA=1;
ET0=1;
TR0=1;
}




void tim0_isr(void) interrupt 1 // timer0 中断
{
static unsigned char num;
TH0=(65536-2000)/256;//重新赋值 2ms
TL0=(65536-2000)%256;
num++;


if(num==50) //大致100ms
{
num=0;
ReadRTC_Flag=1; //读标志位置1
}
}


本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
换一批
延伸阅读

9月2日消息,不造车的华为或将催生出更大的独角兽公司,随着阿维塔和赛力斯的入局,华为引望愈发显得引人瞩目。

关键字: 阿维塔 塞力斯 华为

加利福尼亚州圣克拉拉县2024年8月30日 /美通社/ -- 数字化转型技术解决方案公司Trianz今天宣布,该公司与Amazon Web Services (AWS)签订了...

关键字: AWS AN BSP 数字化

伦敦2024年8月29日 /美通社/ -- 英国汽车技术公司SODA.Auto推出其旗舰产品SODA V,这是全球首款涵盖汽车工程师从创意到认证的所有需求的工具,可用于创建软件定义汽车。 SODA V工具的开发耗时1.5...

关键字: 汽车 人工智能 智能驱动 BSP

北京2024年8月28日 /美通社/ -- 越来越多用户希望企业业务能7×24不间断运行,同时企业却面临越来越多业务中断的风险,如企业系统复杂性的增加,频繁的功能更新和发布等。如何确保业务连续性,提升韧性,成...

关键字: 亚马逊 解密 控制平面 BSP

8月30日消息,据媒体报道,腾讯和网易近期正在缩减他们对日本游戏市场的投资。

关键字: 腾讯 编码器 CPU

8月28日消息,今天上午,2024中国国际大数据产业博览会开幕式在贵阳举行,华为董事、质量流程IT总裁陶景文发表了演讲。

关键字: 华为 12nm EDA 半导体

8月28日消息,在2024中国国际大数据产业博览会上,华为常务董事、华为云CEO张平安发表演讲称,数字世界的话语权最终是由生态的繁荣决定的。

关键字: 华为 12nm 手机 卫星通信

要点: 有效应对环境变化,经营业绩稳中有升 落实提质增效举措,毛利润率延续升势 战略布局成效显著,战新业务引领增长 以科技创新为引领,提升企业核心竞争力 坚持高质量发展策略,塑强核心竞争优势...

关键字: 通信 BSP 电信运营商 数字经济

北京2024年8月27日 /美通社/ -- 8月21日,由中央广播电视总台与中国电影电视技术学会联合牵头组建的NVI技术创新联盟在BIRTV2024超高清全产业链发展研讨会上宣布正式成立。 活动现场 NVI技术创新联...

关键字: VI 传输协议 音频 BSP

北京2024年8月27日 /美通社/ -- 在8月23日举办的2024年长三角生态绿色一体化发展示范区联合招商会上,软通动力信息技术(集团)股份有限公司(以下简称"软通动力")与长三角投资(上海)有限...

关键字: BSP 信息技术
关闭
关闭