找回密码
 立即注册

QQ登录

只需一步,快速开始

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

基于STM32的指示式电子时钟源码

[复制链接]
跳转到指定楼层
楼主
ID:417567 发表于 2018-10-29 21:23 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
基于STM32的指示式电子时钟

单片机源程序如下:
  1. #include "system.h"
  2. #include "SysTick.h"
  3. #include "led.h"
  4. #include "usart.h"
  5. #include "tftlcd.h"
  6. #include "rtc.h"
  7. #include "math.h"


  8. #define PI 3.1415926
  9. void get_circle(int x,int y,int r,int col)
  10. {
  11.         int xc=0;
  12.         int yc,p;
  13.         yc=r;
  14.         p=3-(r<<1);       
  15.         while(xc <= yc)
  16.         {
  17.                 LCD_DrawFRONT_COLOR(x+xc,y+yc,col);
  18.                 LCD_DrawFRONT_COLOR(x+xc,y-yc,col);       
  19.                 LCD_DrawFRONT_COLOR(x-xc,y+yc,col);
  20.                 LCD_DrawFRONT_COLOR(x-xc,y-yc,col);
  21.                 LCD_DrawFRONT_COLOR(x+yc,y+xc,col);       
  22.                 LCD_DrawFRONT_COLOR(x+yc,y-xc,col);
  23.                 LCD_DrawFRONT_COLOR(x-yc,y+xc,col);
  24.                 LCD_DrawFRONT_COLOR(x-yc,y-xc,col);
  25.                 if(p<0)
  26.                 {
  27.                         p += (xc++ << 2) + 6;       
  28.                 }
  29.                 else
  30.                         p += ((xc++ - yc--)<<2) + 10;
  31.         }
  32. }
  33. void draw_circle()         //画圆
  34. {
  35.         get_circle(100,200,100,YELLOW);
  36.         get_circle(100,200,99,YELLOW);
  37.         get_circle(100,200,98,YELLOW);
  38.         get_circle(100,200,97,YELLOW);
  39.         get_circle(100,200,5,YELLOW);                       
  40. }
  41. void draw_dotline()  //画格点
  42. {
  43.         u8 i;
  44.         u8 rome[][3]={"12","1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" } ; //表盘数字
  45.         int x1,y1,x2,y2,x3,y3;
  46.         for(i=0;i<60;i++)
  47.         {
  48.                 x1 = (int)(100 + (sin(i * PI / 30) * 92));
  49.                 y1 = (int)(100 - (cos(i * PI / 30) * 92));
  50.                 x2 = (int)(100 + (sin(i * PI / 30) * 97));
  51.                 y2 = (int)(100 - (cos(i * PI / 30) * 97));
  52.                 FRONT_COLOR=RED;
  53.                 LCD_DrawLine(x1,y1+100,x2,y2+100);

  54.                 if(i%5==0)
  55.                 {
  56.                         x1 = (int)(100 + (sin(i * PI / 30) * 85));
  57.                         y1 = (int)(100 - (cos(i * PI / 30) * 85));
  58.                         x2 = (int)(100 + (sin(i * PI / 30) * 97));
  59.                         y2 = (int)(100 - (cos(i * PI / 30) * 97));
  60.                         LCD_DrawLine(x1,y1+100,x2,y2+100);       

  61.                         x3 = (int)(92 + (sin((i ) * PI / 30) * 80));
  62.                         y3 = (int)(92 - (cos((i ) * PI / 30) * 80));
  63.                         FRONT_COLOR=YELLOW;
  64.                         LCD_ShowString(x3,y3+100,tftlcd_data.width,tftlcd_data.height,16,rome[i/5]);
  65.                        
  66.                 }
  67.                
  68.         }               
  69. }
  70. void draw_hand(int hhour,int mmin,int ssec)  //画指针
  71. {
  72.         int xhour, yhour, xminute, yminute, xsecond, ysecond; //表心坐标系指针坐标
  73.         xhour = (int)(60 * sin( hhour * PI / 6 + mmin * PI / 360 + ssec * PI / 1800));
  74.         yhour = (int)(60 * cos( hhour * PI / 6 + mmin * PI / 360 + ssec * PI / 1800));
  75.         xminute = (int)(90 * sin( mmin * PI / 30 + ssec * PI / 1800));
  76.         yminute = (int)(90 * cos( mmin * PI / 30 + ssec * PI / 1800));
  77.         xsecond = (int)(100 * sin( ssec * PI / 30));
  78.         ysecond = (int)(100 * cos( ssec * PI / 30));

  79.         FRONT_COLOR=RED;
  80.         LCD_DrawLine(100 + xhour, 200 - yhour, 100 -xhour / 6, 200 + yhour / 6);
  81.         FRONT_COLOR=BLUE;
  82.         LCD_DrawLine(100 + xminute, 200 - yminute, 100 -xminute / 4, 200 + yminute / 4);
  83.         FRONT_COLOR=GREEN;
  84.         LCD_DrawLine(100 + xsecond, 200 - ysecond, 100 -xsecond / 3, 200 + ysecond / 3);
  85.        
  86. }
  87. void draw_hand_clear(int hhour,int mmin,int ssec)  //擦指针
  88. {
  89.         int xhour, yhour, xminute, yminute, xsecond, ysecond; //表心坐标系指针坐标
  90.         xhour = (int)(60 * sin( hhour * PI / 6 + mmin * PI / 360 + ssec * PI / 1800));
  91.         yhour = (int)(60 * cos( hhour * PI / 6 + mmin * PI / 360 + ssec * PI / 1800));
  92.         xminute = (int)(90 * sin( mmin * PI / 30 + ssec * PI / 1800));
  93.         yminute = (int)(90 * cos( mmin * PI / 30 + ssec * PI / 1800));
  94.         xsecond = (int)(100 * sin( ssec * PI / 30));
  95.         ysecond = (int)(100 * cos( ssec * PI / 30));

  96.         FRONT_COLOR=BLACK;
  97.         LCD_DrawLine(100 + xhour, 200 - yhour, 100 -xhour / 6, 200 + yhour / 6);
  98.         LCD_DrawLine(100 + xminute, 200 - yminute, 100 -xminute / 4, 200 + yminute / 4);
  99.         LCD_DrawLine(100 + xsecond, 200 - ysecond, 100 -xsecond / 3, 200 + ysecond / 3);
  100.        
  101. }

  102. int main()
  103. {
  104.         u8 buf[10];
  105.        
  106.         SysTick_Init(72);
  107.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);  //中断优先级分组 分2组
  108.         LED_Init();
  109.         USART1_Init(9600);
  110.         TFTLCD_Init();                        //LCD初始化
  111.        
  112.         LCD_Clear(BLACK);
  113.         FRONT_COLOR=YELLOW;
  114.         BACK_COLOR=BLACK;
  115.         LCD_ShowString(10,10,tftlcd_data.width,tftlcd_data.height,16,"This is a RTC text!");
  116.         RTC_Init();
  117.         draw_circle();
  118.         draw_dotline();
  119.        
  120.         while(1)
  121.         {
  122.                 if(timebz==1)
  123.                 {
  124.                         draw_hand_clear(calendar.hour,calendar.min,calendar.sec);
  125.                         timebz=0;
  126.                         RTC_Get();
  127.                         sprintf((char *)buf,"%.2d:%.2d:%.2d",calendar.hour,calendar.min,calendar.sec);
  128.                         draw_hand(calendar.hour,calendar.min,calendar.sec);

  129.                 }
  130.                 draw_circle();
  131.                 draw_dotline();
  132.                 LCD_ShowString(80,50,tftlcd_data.width,tftlcd_data.height,16,buf);               
  133.         }                       
  134. }
复制代码

所有资料51hei提供下载:
指针式电子时钟.zip (679.84 KB, 下载次数: 45)


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

使用道具 举报

沙发
ID:1 发表于 2018-10-31 01:09 | 只看该作者
补全原理图或者详细说明一下电路连接即可获得100+黑币
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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