proteus仿真之DS1302+LCD1602显示试验

发布者:EtherealLight最新更新时间:2017-10-02 来源: eefocus关键字:proteus仿真  DS1302  LCD1602 手机看文章 扫描二维码
随时随地手机看文章

proteus仿真之DS1302+LCD1602显示试验

仿真效果图为:



C语言源程序如下:


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


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


*/


#include


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


#define LCD_PORT P1  //液晶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
}
}


关键字:proteus仿真  DS1302  LCD1602 引用地址:proteus仿真之DS1302+LCD1602显示试验

上一篇:基于51单片机的直流数字电压表(0-5V)
下一篇:1~99秒倒计时数码管显示C程序+Proteus仿真

推荐阅读最新更新时间:2024-03-16 15:39

MSP430单片机控制lcd1602显示C程序
//MSP430写的1602液晶显示程序2011/8/26//硬件连接 //P4 数据口 P3.7---E P3.6---RW P3.5----RS #include msp430x14x.h #define uint unsigned int #define rw(x) P3OUT=(P3OUT&(~BIT6))|(x?BIT6:0); unsigned char table0 = hankouxueyuan ; unsigned char table1 = dianzisheji ; //**************延时**************************
[单片机]
51proteus仿真:生成方波、正弦波、锯齿波和三角波
这个proteus仿真是一个网友做的,该仿真可以生成方波、正弦波、锯齿波和三角波,并且还可以用按键调整波形。 不过,对初学者来讲,可能有点复杂。对于本科生来说,这个仿真几乎可以作为毕业论文了吧。当然,需要用实际元器件来调试,制作pcb,焊接。 我做的 生成锯齿波 和 生成正弦波 的仿真,可以作为学习这个仿真的阶梯。 这个仿真主要是用到溢出中断,和外部键盘中断。熟悉中断,和定时器的编程后,实现这个仿真其实也很简单。 仿真图: C程序如下: 有三个C文件: 主函数文件如下: #include reg51.h //unsigned char TIME0_H=0xec,TIME0_L=0x78; //定时器0的初值设置;全局
[单片机]
51<font color='red'>proteus仿真</font>:生成方波、正弦波、锯齿波和三角波
DS1302时钟芯片的MSP430程序
//MSP430 Advanced Developping Components - ////DS1302 Trickle Charge Timekeeping Chip //MSP430高级实验开发组件 - DS1302时钟芯片 //时钟设置: ////ACLK=N/A,MCLK=SMCLK=default(DCO~800k) //硬件连接: //// MSP430 MCU DS1302 //// ------------------ ------------------ //// | P20 | ------ | SCLK
[单片机]
51单片机DS1302时钟芯片简单程序
#include reg51.h #include intrins.h #define uchar unsigned char #define uint unsigned int data_7seg ={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,}; uchar hour,min,sec; sbit shi=P1^0; sbit fen=P1^1; sbit miao=P1^2; sbit rst=P1^4; sbit sck=P1^5; sbit io=P1^6; sbit fm=P1^7; /*函数声明:*/ void write_ds1302_byte(ucha
[单片机]
PIC16F887 串口 LCD1602 按键
#include xc.h #include stdio.h #include stdlib.h #include string.h #define uchar unsigned char #define uint unsigned int /* CONFIG1 */ #pragma config FOSC = XT /* Oscillator Selection bits (XT oscillator: Crystal/resonator on RA6/OSC2/CLKOUT and RA7/OSC1/CLKIN) */ #pragma config WDTE = OFF /* Watchdog Time
[单片机]
开源ARM7驱动拼接1024X1024LCD屏Proteus仿真源码
在当年还没有人尝试过用多块LCD拼接成大屏幕的仿真程序,采用ARM7驱动,希望多交流。 仿真原理图如下(proteus仿真工程文件可到本帖附件中下载) 单片机源程序如下: #include config.h uint8 BMP ={ 0x00,0x00,0x00,0x00,0x00,0x01,0xF3,0xF0,0x7F,0x18,0x1B,0xFB,0xF2,0x02,0x41,0xF1, ………… ………… …………限于本文篇幅 余下代码请从51黑下载附件………… 0x00,0x30,0x00,0x30,0x00,0x00,0x00,0x30,0x00,0x30,0x00,0x00,0x00,0x00,0x0
[单片机]
开源ARM7驱动拼接1024X1024LCD屏<font color='red'>Proteus仿真</font>源码
51proteus仿真:proteus中的步进电机的接法与时序
proteus中的步进电机有两种, 六线制(MOTOR-STEPPER)和四线制(MOTOR-BISTEPPER),六线制的左右中间两根线接电源,任然剩下四根,但是,这四根的顺序和四线制的不同,见下图。 注意a,b,c,d的顺序 在实际情况中,单片机是不能直接拖动步进电机的,需用ULN2003这样的器件 两个步进电机都是四相电机。 如果用四拍: 那么P2输出的(顺时针)顺序就是:0x03,0x06,0x0c,0x09 a 1 0 0 1 b 1 1 0 0 c 0 1 1 0 d 0 0 1 1 如果用八拍: 那么P2输出的(顺时针)顺序就是:0x01,0x03,0x02,0x06,0x
[单片机]
51<font color='red'>proteus仿真</font>:proteus中的步进电机的接法与时序
ARM之LPC2132流水灯LCD1602
1、汇编程序 GPADIR EQU 0xE0028008 GPASET EQU 0xE0028004 GPACLR EQU 0xE002800C EXPORT xmain AREA Init,CODE,READONLY ENTRY xmain ldr r0,=GPADIR orr r1,r1,#0x0ff orr r1,#0x300 str r1, ;A=out ;========
[单片机]
ARM之LPC2132流水灯<font color='red'>LCD1602</font>
小广播
添点儿料...
无论热点新闻、行业分析、技术干货……
设计资源 培训 开发板 精华推荐

最新单片机文章
何立民专栏 单片机及嵌入式宝典

北京航空航天大学教授,20余年来致力于单片机与嵌入式系统推广工作。

换一换 更多 相关热搜器件
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved