找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 3044|回复: 0
打印 上一主题 下一主题
收起左侧

proteus仿真之DS1302+LCD1602显示试验

[复制链接]
跳转到指定楼层
楼主
仿真效果图为:

C语言源程序如下:


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


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


*/


  1. <font color="rgb(79, 79, 79)"><font face="-apple-system, &quot;"><font style="font-size: 16px">#include <reg52.h>


  2. /**********LCD1602接口程序**********/


  3. #define LCD_PORT P1  //液晶LCD1602数据
  4. sbit RS = P2^4;
  5. sbit RW = P2^5;
  6. sbit E    = P2^6;


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


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


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


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


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


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


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


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




  34. void DS1302_Init(void);
  35. void DS1302_Write_Byte(unsigned char addr, unsigned char d);
  36. unsigned char DS1302_Read_Byte(unsigned char addr) ;
  37. void DS1302_Read_Time(void);
  38. void DS1302_Write_Time(void);


  39. void InitTIMER0(void);//inital timer0


  40. void Delay_1ms(unsigned char i);
  41. void Delay_10us(unsigned char i);
  42. void Write_Cmd(unsigned char cmd);
  43. void Write_Dat(unsigned char dat);
  44. void Addr_x_y(unsigned char x,bit y);
  45. void Show_Char(unsigned char x,bit y,unsigned char p);
  46. void Show_String(unsigned char x,bit y,char *ptr);
  47. void LCD_Init(void);








  48. void main(void)   
  49. {
  50.     LCD_Init();
  51. DS1302_Init();
  52.   DS1302_Write_Time();
  53. InitTIMER0();
  54. //P2=0xff;   //51默认为输入
  55. while(1)
  56. {

  57. if(ReadRTC_Flag==1)
  58. {
  59. ReadRTC_Flag=0;
  60. DS1302_Read_Time();
  61. }


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




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


  81. Show_String(0,0,str1);
  82. Show_String(0,1,str2);

  83. }
  84. }






  85. /********************************/
  86. void Delay_1ms(unsigned char i)   //最小延时1ms
  87. {
  88. unsigned char j;
  89. while(i--)
  90. for(j=0;j<125; j++);
  91. }
  92. void Delay_10us(unsigned char i) //最小延时10us
  93. {
  94. unsigned char j;
  95. while(i--)
  96. for(j=0;j<10; j++);
  97. }


  98. void Write_Cmd(unsigned char cmd)   //写指令
  99. {
  100. Delay_10us(5);
  101. E=0;
  102. RS=0;
  103. RW=0;
  104. LCD_PORT = cmd;
  105. Delay_10us(5); //>40us
  106. E=1;
  107. Delay_1ms(2); //>150us
  108. E=0;
  109. Delay_10us(4); //>25+10us
  110. }


  111. void Write_Dat(unsigned char dat)   //写数据
  112. {
  113. Delay_10us(5);
  114. E=0;
  115. RS=1;
  116. RW=0;
  117. LCD_PORT = dat;
  118. Delay_10us(5);
  119. E=1;
  120. Delay_10us(5);
  121. E=0;
  122. Delay_10us(4);
  123. }




  124. void Addr_x_y(unsigned char x,bit y)   //写坐标,定位置
  125. {
  126. unsigned char temp=0x80; //默认最高位:D7为1 即以0x80开始。  
  127. if(y) //y :0为第一行  1为第二行
  128.   {
  129.   temp|=0x40;
  130.   }
  131.   temp|=x;
  132. Write_Cmd(temp);
  133. }




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


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


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




  146. void LCD_Init(void) //1602初始化代码
  147. {
  148. Delay_1ms(1500);
  149. Write_Cmd(0x38);
  150. Delay_1ms(5);
  151. Write_Cmd(0x38);
  152. Delay_1ms(5);
  153. Write_Cmd(0x38);
  154. Delay_1ms(5);
  155. Write_Cmd(0x38);
  156. Write_Cmd(0x08);
  157. Write_Cmd(0x06);
  158. Write_Cmd(0x0c);
  159. Write_Cmd(0x01);
  160. }




  161. /*------------------------------------------------
  162.            DS1302初始化
  163. ------------------------------------------------*/
  164. void DS1302_Init(void)
  165. {
  166. RST_CLR; //RST脚置低
  167. SCK_CLR; //SCK脚置低
  168. DS1302_Write_Byte(DS1302_SEC,0x00);
  169. }


  170. /*------------------------------------------------
  171.            向DS1302写入一字节数据
  172. ------------------------------------------------*/
  173. void DS1302_Write_Byte(unsigned char addr, unsigned char dat)
  174. {
  175. unsigned char i;
  176. RST_SET;
  177. addr = addr & 0xFE;     //写地址 最低位为W写,低电平
  178. for (i = 0; i < 8; i++)
  179. {
  180. if (addr & 0x01)
  181. {
  182. SDA_SET;
  183. }
  184. else
  185. {
  186. SDA_CLR;
  187. }
  188. SCK_SET;
  189. SCK_CLR;
  190. addr = addr >> 1;
  191. }

  192. //写入数据:dat
  193. for (i = 0; i < 8; i ++)
  194.   {
  195. if (dat & 0x01)
  196.    {
  197. SDA_SET;
  198. }
  199. else
  200.    {
  201. SDA_CLR;
  202. }
  203. SCK_SET;
  204. SCK_CLR;
  205. dat = dat >> 1;
  206. }
  207. RST_CLR; //停止DS1302总线
  208. }




  209. /*------------------------------------------------
  210.            从DS1302读出一字节数据
  211. ------------------------------------------------*/


  212. unsigned char DS1302_Read_Byte(unsigned char addr)
  213. {


  214. unsigned char i;
  215. unsigned char temp;
  216. RST_SET;

  217. addr = addr | 0x01; //最低RD,有效为高电平
  218. for (i = 0; i < 8; i ++)
  219. {
  220. if (addr & 0x01)
  221. {
  222. SDA_SET;
  223. }
  224. else
  225. {
  226. SDA_CLR;
  227. }
  228. SCK_SET;
  229. SCK_CLR;
  230. addr = addr >> 1;
  231. }

  232. //输出数据:temp
  233. for (i = 0; i < 8; i ++)
  234. {
  235. temp = temp >> 1;
  236. if (SDA_RD)
  237. {
  238. temp |= 0x80;
  239. }
  240. else
  241. {
  242. temp &= 0x7F;
  243. }
  244. SCK_SET;
  245. SCK_CLR;
  246. }

  247. RST_CLR; //停止DS1302总线
  248. return temp;
  249. }




  250. /*------------------------------------------------
  251.            从DS1302读出时钟数据
  252. ------------------------------------------------*/
  253. void DS1302_Read_Time(void)  
  254. {
  255.        unsigned char i,tmp;
  256. time_buf[1]=DS1302_Read_Byte(DS1302_YEAR); //年
  257. time_buf[2]=DS1302_Read_Byte(DS1302_MON); //月
  258. time_buf[3]=DS1302_Read_Byte(DS1302_DATE); //日
  259. time_buf[4]=DS1302_Read_Byte(DS1302_HOUR); //时
  260. time_buf[5]=DS1302_Read_Byte(DS1302_MIN); //分
  261. time_buf[6]=(DS1302_Read_Byte(DS1302_SEC))&0x7F;//秒
  262. time_buf[7]=DS1302_Read_Byte(DS1302_DAY); //周


  263. for(i=0;i<8;i++)
  264. {           //BCD处理
  265. tmp=time_buf[i]/16;
  266. time_buf1[i]=time_buf[i]%16;
  267. time_buf1[i]=time_buf1[i]+tmp*10;
  268. }
  269. }




  270. /*------------------------------------------------
  271.            向DS1302写入时钟数据
  272. ------------------------------------------------*/
  273. void DS1302_Write_Time(void)
  274. {
  275.      
  276.     unsigned char i,tmp;
  277. for(i=0;i<8;i++)
  278. {                  //BCD处理
  279. tmp=time_buf1[i]/10;
  280. time_buf[i]=time_buf1[i]%10;
  281. time_buf[i]=time_buf[i]+tmp*16;
  282. }
  283. DS1302_Write_Byte(DS1302_CTRL,0x00); //关闭写保护
  284. DS1302_Write_Byte(DS1302_SEC,0x80); //暂停
  285. //DS1302_Write_Byte(DS1302_CHARGE,0xa9); //涓流充电
  286. DS1302_Write_Byte(DS1302_YEAR,time_buf[1]); //年
  287. DS1302_Write_Byte(DS1302_MON,time_buf[2]); //月
  288. DS1302_Write_Byte(DS1302_DATE,time_buf[3]); //日
  289. DS1302_Write_Byte(DS1302_HOUR,time_buf[4]); //时
  290. DS1302_Write_Byte(DS1302_MIN,time_buf[5]); //分
  291. DS1302_Write_Byte(DS1302_SEC,time_buf[6]); //秒
  292. DS1302_Write_Byte(DS1302_DAY,time_buf[7]); //周
  293. DS1302_Write_Byte(DS1302_CTRL,0x80); //打开写保护
  294. }


  295. /*------------------------------------------------
  296.            Timer0 初始化,开中断,2ms定时
  297. ------------------------------------------------*/
  298. void InitTIMER0(void)
  299. {
  300. TMOD|=0x01; //定时器设置 16位
  301. TH0=(65536-2000)/256; //定时时间   2ms
  302. TL0=(65536-2000)%256;
  303. EA=1;
  304. ET0=1;
  305. TR0=1;
  306. }




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


  313. if(num==50)        //大致100ms
  314.    {
  315.     num=0;
  316.     ReadRTC_Flag=1; //读标志位置1
  317. }
  318. }
复制代码

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

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