当前位置:首页 » 编程语言 » 电子时钟c语言设计

电子时钟c语言设计

发布时间: 2022-11-14 14:43:34

❶ 用单片机写一个c语言程序关于电子时钟,用键盘调制时分秒的加减 第一个键控制模式,第二个为加,第三个减

我给你一个保证好用的,KEY_COM调模式,按一下进入调时 ,在按一下调分,再按一下退出调时模式,这时加减按键都无效,在调时模式时会产生闪烁方式,这段程序是我自己想的办法实现的,可能有点笨拙,但效果很好,我建议你用DS1302做时钟,用单片机计数器由于晶振等原因会有很大的误差,实际中没有用直接用单片机做的,希望对你有帮助。
(段选和位选接的都是8位的D触发器,如果你的开发板电路结构有区别,改一下显示部分的程序就行了)
#include<reg51.h>
#define uchar unsigned char
sbit an=P0^0;
sbit wei=P0^1;
sbit KEY_ADD=P3^3;
sbit KEY_DEC=P3^4;
sbit KEY_COM=P3^5;
uchar code a[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x40, 0x00 };
char hour=0,minute=0,second=0,i=0,flag=0;
unsigned char t=0,t1=0,t2=0,t3=0;
unsigned int count=0;
void delays()//10ms延时子程序
{unsigned char i,j;
for(i=20;i>0;i--)
for(j=248;j>0;j--);
}

void start()
{
TMOD=0x01;
TH0=(65536-1000)/256;
TL0=(65536-1000)%256;
ET0=1;
EA=1;
TR0=1;
}

void main()
{
start();
KEY_ADD=1;
KEY_DEC=1;
KEY_COM=1;
while(1){
if(!KEY_COM)
{
delays();
if(!KEY_COM)
{while(!KEY_COM);
flag++;if(flag==3)flag=0;
}
}

if(!KEY_ADD)
{
delays();
if(!KEY_ADD)
{

while(!KEY_ADD);
if(flag==1)
{hour++;if(hour==24)hour=0;}
if (flag==2)
{minute++;if(minute==60)minute=0;}
}
}

if(!KEY_DEC)
{
delays();
if(!KEY_DEC)
{while(!KEY_DEC);
if(flag==1)
{hour--;if(hour<0)hour=23;}
if(flag==2)
{minute--;if(minute<0)minute=59;}
}
}

}

}
void t0() interrupt 1
{
TH0=(65536-2000)/256;
TL0=(65536-2000)%256;
count++;

switch(i)
{case 0: {if(flag==1){t++;if(t==60)t=0; if(t<30) {P1=a[hour/10];an=1;an=0;P1=~0x01;wei=1;wei=0;}
else {P1=0x00;an=1;an=0;P1=~0x01;wei=1;wei=0;} } else {P1=a[hour/10];an=1;an=0;P1=~0x01;wei=1;wei=0;} } break;

case 1: {if(flag==1) {t1++;if(t1==60)t1=0; if(t1<30) {P1=a[hour%10];an=1;an=0;P1=~0x02;wei=1;wei=0;}
else {P1=0x00;an=1;an=0;P1=~0x01;wei=1;wei=0;} } else {P1=a[hour%10];an=1;an=0;P1=~0x02;wei=1;wei=0;} } break;

case 2:{P1=0x40;an=1;an=0;P1=~0x04;wei=1;wei=0;}break;

case 3: {if(flag==2) {t2++;if(t2==60)t2=0; if(t2<30) {P1=a[minute/10];an=1;an=0;P1=~0x08;wei=1;wei=0;}
else {P1=0x00;an=1;an=0;P1=~0x01;wei=1;wei=0;} } else {P1=a[minute/10];an=1;an=0;P1=~0x08;wei=1;wei=0;} } break;

case 4: {if(flag==2) {t3++;if(t3==60)t3=0; if(t3<30) {P1=a[minute%10];an=1;an=0;P1=~0x10;wei=1;wei=0;}
else {P1=0x00;an=1;an=0;P1=~0x01;wei=1;wei=0;} } else {P1=a[minute%10];an=1;an=0;P1=~0x10;wei=1;wei=0;} } break;

case 5:{P1=0x40;an=1;an=0;P1=~0x20;wei=1;wei=0;}break;
case 6:{P1=a[second/10];an=1;an=0;P1=~0x40;wei=1;wei=0;}break;
case 7:{P1=a[second%10];an=1;an=0;P1=~0x80;wei=1;wei=0;}break;
}
i++;
if(i==8)i=0;
if(count==500)
{count=0;
second++;
if(second==60)
{second=0;
minute++;
if(minute==60)
{minute=0;
hour++;
if(hour==24)
{
hour=0;
}
}
}
}
}

❷ 51单片机求这个时钟的c语言程序

以下是四位数码管可调时带秒闪烁的c51单片机电子钟程序(c语言)。

/**** 本程序中,晶振为12MHz, ****/
/**** 时间控制采用定时中断控制方式。 ****/
/**** 模式和时间调整采用查询方式。 ****/

#include<reg52.h>

sbit P20=P2^0; //分个位控制端
sbit P21=P2^1; //分十位控制端
sbit P22=P2^2; //时个位控制端
sbit P23=P2^3; //时十位控制端
sbit led=P2^7; //second display led

sbit key0=P3^0; //模式设置
sbit key1=P3^1; //加
sbit key2=P3^2; //减

unsigned char hour,min,sec,T50ms;
unsigned char modstate; //模式状态

unsigned char code table[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xff};//段码

void init(); //初始化子程序声明
void delay500us(unsigned char X); //延时子程序声明
void display(); //显示子程序声明
void display001(); //显示子程序声明
void display002(); //显示子程序声明
void keyscan(); //按键识别子程序声明

void main()
{
init();
while(1)
{
keyscan();
}
}

void init() //初始化子程序
{
TMOD=0x01;
TH0=(65536-49990)/256;
TL0=(65536-49990)%256;
ET0=1;
EA=1;
TR0=1;
}

void delay500us(unsigned char X)
{
unsigned char i,j;
for(i=X;i>0;i--)
for(j=248;j>0;j--);
}

void timer0() interrupt 1 //timer0中断服务子程序,定时时间为50ms,本程序加了10us的时间修正量
{
TMOD=0x01;
TH0=(65536-49990)/256;
TL0=(65536-49990)%256;

T50ms++;
if(T50ms>=20)
{
T50ms=0;
sec++;
if(sec>=60)
{
sec=0;
min++;
if(min>=60)
{
min=0;
hour++;
if(hour>=24)hour=0;
}
}
}
}

void display()
{
P20=1;
P21=1;
P22=1;
P23=1;
P0=table[hour/10];
P23=0;
delay500us(5);

P20=1;
P21=1;
P22=1;
P23=1;
P0=table[hour%10];
P22=0;
delay500us(5);

P20=1;
P21=1;
P22=1;
P23=1;
P0=table[min/10];
P21=0;
delay500us(5);

P20=1;
P21=1;
P22=1;
P23=1;
P0=table[min%10];
P20=0;
delay500us(5);

if(T50ms<=10)led=0;
if(T50ms>10)led=1;
}

void display001()
{
P20=1;
P21=1;
P22=1;
P23=1;
P0=table[hour/10];
P23=0;
delay500us(10);

P20=1;
P21=1;
P22=1;
P23=1;
P0=table[hour%10];
P22=0;
delay500us(10);
}

void display002()
{
P20=1;
P21=1;
P22=1;
P23=1;
P0=table[min/10];
P21=0;
delay500us(10);

P20=1;
P21=1;
P22=1;
P23=1;
P0=table[min%10];
P20=0;
delay500us(10);
}

void keyscan() //按键识别钟程序
{
while(modstate==0)
{
display();
if(key0==0)
{
display();
if(key0==0)modstate++; //这两句加在一起为延时10ms软件防抖设计。
while(key0==0)display001(); //等待按键释放。
}
}
//****************************************************************************//
while(modstate==1)
{
display001();
if(key0==0)
{
display001();
if(key0==0)modstate++; //这两句加在一起为延时10ms软件防抖设计。
while(key0==0)display002(); //等待按键释放。
}

if(key1==0)
{
display001();
if(key1==0)
{
hour++;
if(hour>=24)hour=0;
while(key1==0)display001();
}
}
if(key2==0)
{
display001();
if(key2==0)
{
hour--;
if(hour>=24)hour=0;
while(key2==0)display001();
}
}
}
//****************************************************************************//
while(modstate==2)
{
display002();
if(key0==0)
{
display002();
if(key0==0)modstate=0; //这两句加在一起为延时10ms软件防抖设计。
while(key0==0)display(); //等待按键释放。
}

if(key1==0)
{
display002();
if(key1==0)
{
min++;
if(min>=60)min=0;
while(key1==0)display002();
}
}
if(key2==0)
{
display002();
if(key2==0)
{
min--;
if(min>=60)min=0;
while(key2==0)display002();
}
}
}
}

❸ 如何使用C语言编写电子时钟

电子时钟吗?至少有硬件条件,比如用51单片机写,不用时钟芯片的话,就用定时器进行标定。

❹ C语言电子时钟设计

#include<graphics.h> #include<math.h> #include<dos.h> #define PI 3.1415926 //屏幕中心的坐标(640X480模式下) #define mid_x 320 #define mid_y 240 int main() { int graphdriver=DETECT,graphmode; int end_x,end_y; struct time curtime; float th_hour,th_min,th_sec; initgraph(&graphdriver,&graphmode,"C:\\TC2"); //初始化VGA屏幕模式 setbkcolor(BLACK); //使用黑色的背景色 while(!kbhit(0)) //若有键盘输入,则跳出,即是结束程序 { setcolor(GREEN); //把画笔设为绿色 circle(mid_x,mid_y,180); //钟的外圆 circle(mid_x,mid_y,150); //钟的内圆 circle(mid_x,mid_y,1); //画出钟的圆心 gettime(&curtime); //取得系统当前时间 th_sec=(float)curtime.ti_sec*0.1047197551; //把秒针的角度化为弧度,为以后绘制时方便,下同 th_min=(float)curtime.ti_min*0.1047197551+th_sec/60.0; //分针的弧度 th_hour=(float)curtime.ti_hour*0.5235987755+th_min/12.0; //时度的弧度,注意整时是12等分的,所时乘的是3.14/180*5 //计算出时针的尾的坐标(时针长70) end_x=mid_x+70*sin(th_hour); end_y=mid_y-70*cos(th_hour); setcolor(RED); line(mid_x,mid_y,end_x,end_y); //用红色线画出时针 //计算出分针坐标(分针长110) end_x=mid_x+110*sin(th_min); end_y=mid_y-110*cos(th_min); setcolor(RED); line(mid_x,mid_y,end_x,end_y); //用红色画出分针 end_x=mid_x+140*sin(th_sec); end_y=mid_y-140*cos(th_sec); setcolor(RED); line(mid_x,mid_y,end_x,end_y); //同上,画出秒针,长为140 //画出钟盘上的刻度,刻度长20 line(140,240,160,240); //9点对应的大刻度 line(320,60,320,80); //12点对应的大刻度 line(500,240,480,240); //3点的刻度 line(320,420,320,400); //6点的刻度 line(410,395.7,400,378.4); //5点 line(475.7,330,458.4,320); //4点 line(475.7,150,458.4,160); //2点 line(410,84.3,400,101.6); //1点 line(230,84.3,240,101.6); //11点 line(164.3,150,181.6,160); //10点 line(164.3,330,181.6,320); //8点 line(230,395.7,240,378.4); //7点 sleep(BLUE); //这里应该是打错,停止一秒,应为sleep(1000) cleardevice(); //清除屏幕上的显示 } closegraph(); //关闭VGA屏幕,即返回文本方式 return 0; }

❺ 有人知道如何用52单片机做电子时钟(LCD显示)的程序吗(用C语言编程

自己修改一下就能用了

❻ 怎么用C++编写带日期的电子时钟

#include <iostream>
#include <time.h>
using namespace std;
void delay(double seconds)
{
clock_t t = clock();
while((double)(clock()-t)/(double)CLOCKS_PER_SEC<seconds);
}
class Clock
{
private:
int year;
int month;
int day;
int hour;
int minute;
int second;
public:
Clock();
Clock(int y,int m,int d,int h,int mi,int s);
~Clock();
void secondadd();
void changetime();
void showtime();
void test();
};
Clock::Clock()
{
cout<<"please input current year:"<<endl;
cin>>year;
if((year/4==0&&year/100!=0)||(year/400==0))
cout<<"闰年"<<endl;
else
cout<<"不是闰年"<<endl;
month:
cout<<"please input current month:"<<endl;
cin>>month;
if(month<1||month>12)
{
month = 0;
cout<<"month is wrong!input again!"<<endl;
goto month;
}
day:
cout<<"please input current day:"<<endl;
cin>>day;
if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
{
if(day<1||day>31)
{
day = 0;
cout<<"day is wrong!input again!"<<endl;
goto day;
}
}
if(month==4||month==6||month==9||month==11)
{
if(day<1||day>30)
{
day = 0;
cout<<"day is wrong!input again!"<<endl;
goto day;
}
}
if(month == 2)
{
if((year/4==0&&year/100!=0)||(year/400==0))
{
if(day<1||day>29)
{
cout<<"闰年"<<endl;
day = 0;
cout<<"day is wrong!input again!"<<endl;
goto day;
}
}
else
{
if(day<1||day>28)
{
cout<<"不是闰年"<<endl;
day = 0;
cout<<"day is wrong!input again!"<<endl;
goto day;
}
}
}
hour:
cout<<"please input current hour:"<<endl;
cin>>hour;
if(hour<0||hour>24)
{
hour = 0;
cout<<"hour is wrong!input again!"<<endl;
goto hour;
}
minute:
cout<<"please input current minute:"<<endl;
cin>>minute;
if(minute<0||minute>60)
{
minute = 0;
cout<<"minute is wrong!input again!"<<endl;
goto minute;
}
second:
cout<<"please input current second:"<<endl;
cin>>second;
if(second<0||second>60)
{
minute = 0;
cout<<"second is wrong!input again!"<<endl;
goto second;
}
}
Clock::Clock(int y,int m,int d,int h,int mi,int s)
{
year = y;
month = m;
day = d;
hour = h;
minute = mi;
second = s;
}
Clock::~Clock()
{
}
void Clock::changetime()
{
int y;int m;int d;int h;int mi;int s;
cout<<"input year:"<<endl;
cin>>y;
cout<<"input month:"<<endl;
cin>>m;
cout<<"input day:"<<endl;
cin>>d;
cout<<"input hour:"<<endl;
cin>>h;
cout<<"input minute:"<<endl;
cin>>mi;
cout<<"input second:"<<endl;
cin>>s;
year = y;
month = m;
day = d;
hour = h;
minute = mi;
second = s;
}
void Clock::secondadd()
{
second = second + 1;
test();
}
void Clock::test()
{
if(second>=60)
{
second = second-60;
minute++;
}
if(minute>=60)
{
minute = minute-60;
hour++;
}
if(hour>=24)
{
hour = hour-24;
day++;
}
if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)
{
if(day>=32)
{
day=day-31;
month++;
}
}
if(month==4||month==6||month==9||month==11)
{
if(day>=31)
{
day=day-30;
month++;
}
}
if((year/4==0&&year/100!=0)||(year/400==0))
{
if(month == 2)
{
if(day>=30)
{
day = day-29;
month++;
}
}
}
else
{
if(month == 2)
{
if(day>=29)
{
day = day-28;
month++;
}
}
}
if(month>=13)
{
month = month -12;
year++;
}
}
void Clock::showtime()
{
cout<<"date is "<<year<<"."<<month<<"."<<day<<endl;
cout<<"time is "<<hour<<":"<<minute<<":"<<second<<endl;
}
int main()
{
Clock c;
while(1)
{
delay(1);
c.secondadd();
c.showtime();
}
}
在判断年份上还有一些小BUG,(*^__^*),请自行解决

❼ 用C语言编写一个模拟windows自带的电子时钟程序

1.这是用windows api写的程序。所以要求是纯c的话就没有办法了
2.其中定时用了两种方法。一种是用取消息。另一种是延时队列。这里只使用了取消息的方法。延时队列由于我机器上是vc6.0,CreateTimerQueue在本人机器上无法使用,需要新的sdk,所以没有加以验证,但取消息的方式是可行的。
3.稍稍验证了下,基本满足要求。

❽ 求一个关于用C语言编写的电子时钟的程序,内容要有闹钟,可以调整时间

#include<reg52.h>
#include<absacc.h>
#include<intrins.h>
#define unit unsigned int
#define uchar unsigned char
//#define HZ 12
sbit key0=P0^0; // 分钟调整
sbit key1=P0^1; // 小时调整

sbit P2_0=P2^7; //秒 指示灯
sbit MN_RXD=P3^6;
sbit MN_TXD=P3^7;

uchar data CLOCK[4]={0,0,0,12};//存放时钟时间(百分秒,秒,分,和时位)

//数码管显示表0-f 灭
uchar code TABLE[]={0xBE,0x06,0xEA,0x6E,0x56,0x7C,0xFC,0x0E,0xFE,0x7E,0x00};
//**********************************
//模拟串口发送一个字节数据 函数
//**********************************
void SendData(unsigned char senddata)
{
unsigned char i;
for(i=0;i<8;i++)
{
if((senddata&0x01)==0)
MN_RXD=0;
else
MN_RXD=1;
_nop_();
MN_TXD=0;
_nop_();
MN_TXD=1;
senddata=senddata>>1;
}
}

//**********************************
//显示程序函数
//**********************************
void display(void)
{
// unsigned int n;
uchar temp;
temp=CLOCK[1]; temp=temp%10; SendData(TABLE[temp]);
temp=CLOCK[1]; temp=temp/10; SendData(TABLE[temp]);
temp=CLOCK[2]; temp=temp%10; SendData(TABLE[temp]);
temp=CLOCK[2]; temp=temp/10; SendData(TABLE[temp]);
temp=CLOCK[3]; temp=temp%10; SendData(TABLE[temp]);
temp=CLOCK[3]; temp=temp/10; SendData(TABLE[temp]);

/*
for(n=0;n<5000;n++);

for(n=0;n<6;n++)
{
SendData(TABLE[10]);
}
*/
}

//**********************************
//按键控制函数
//**********************************
void keycan()
{
unsigned int n;
EA=0;
if(key0==0) // 分钟调整
{
for(n=0;n<10000;n++); //延时去抖动
while(key0==0);
CLOCK[2]=CLOCK[2]+1;
if(CLOCK[2]==60) //到一时
{
CLOCK[2]=0;
}
display();

}
if(key1==0) // 小时调整
{
for(n=0;n<10000;n++); //延时去抖动
while(key1==0);
CLOCK[3]=CLOCK[3]+1;
if(CLOCK[3]==24)
{
CLOCK[3]=0;
}
display();

}
EA=1;
}

//**********************************
//T0中断服务函数
//**********************************
void time0() interrupt 1 //using 1
{
TH0=0xD8; TL0=0xF0; //重置初值
// TH0=0xB1; TL0=0xE0;
//时钟处理
CLOCK[0]=CLOCK[0]+1;

}
//**********************************
//主函数
//**********************************
void main()
{
EA=1;
ET0=1;
TMOD=0x01; //T0方式1定时
TH0=0xD8; TL0=0xF0; //D8F0 定时10ms
// TH0=0xB1; TL0=0xE0; //定时 20ms
TR0=1;
for(;;)
{
if(CLOCK[0]==100) //到一秒 10ms*100
{
CLOCK[0]=0;
P2_0=~P2_0;
CLOCK[1]=CLOCK[1]+1;
if(CLOCK[1]==60) //到一分
{
CLOCK[1]=0;
CLOCK[2]=CLOCK[2]+1;
if(CLOCK[2]==60) //到一时
{
CLOCK[2]=0;
CLOCK[3]=CLOCK[3]+1;
if(CLOCK[3]==24)
{
CLOCK[3]=0;
}
}
}
display();
}

keycan();
}

}

❾ C语言时钟设计

#include<graphics.h> /* 引入graphic.h */ #include<math.h> /* 引入math.h */ #include<dos.h> /* 引入dos.h */ #define pi 3.1415926 /*定义pi=3.14159*/ #define X(a,b,c) x=a*cos(b*c*pi/180-pi/2)+300; #define Y(a,b,c) y=a*sin(b*c*pi/180-pi/2)+240; #define d(a,b,c) X(a,b,c);Y(a,b,c);line(300,240,x,y) /*定义……*/ void init() /*初始化程序*/ {int i,l,x1,x2,y1,y2; /*定义……*/ setbkcolor(1); /*设置颜色*/ circle(300,240,200); /*作园*/ circle(300,240,205); circle(300,240,5); for(i=0;i<60;i++) /*循环(算时间)*/ {if(i%5==0) l=15; else l=5; x1=200*cos(i*6*pi/180)+300; y1=200*sin(i*6*pi/180)+240; x2=(200-l)*cos(i*6*pi/180)+300; y2=(200-l)*sin(i*6*pi/180)+240; line(x1,y1,x2,y2); } } main() { int x,y; int gd=VGA,gm=2; unsigned char h,m,s; /*定义*/ struct time t[1]; initgraph(&gd,&gm,"d:\\tc"); init(); setwritemode(1); gettime(t); h=t[0].ti_hour; m=t[0].ti_min; s=t[0].ti_sec; /*定义时分秒*/ setcolor(7); /*设置颜色*/ d(150,h,30); setcolor(14); d(170,m,6); setcolor(4); d(190,s,6); while(!kbhit()) /*获取键盘相应*/ {while(t[0].ti_sec==s) gettime(t); /*C语言中得到时间的函数*/ sound(400); /*计算时间……*/ delay(70); sound(200); delay(30); nosound(); setcolor(4); d(190,s,6); s=t[0].ti_sec; d(190,s,6); if (t[0].ti_min!=m) { setcolor(14); d(170,m,6); m=t[0].ti_min; d(170,m,6); } if (t[0].ti_hour!=h) { setcolor(7); d(150,h,30); h=t[0].ti_hour; d(150,h,30); sound(1000); delay(240); nosound(); delay(140); sound(2000); delay(240); nosound(); } } getch(); /*设置空格后退出*/ closegraph(); }

❿ 求 stc89c52+lcd1602+ds1302整点蜂鸣的电子时钟C语言设计程序

ResultCode MGraph<T>::Insert(int u, int v, T &w)
{
if(u < 0 || v < 0 || u > n - 1 || v > n - 1 || u == v) return Failure;
if(a[u][v] != noEdge) return Duplicate;
a[u][v] = w;
e++;
return Success;
}

热点内容
会员过期缓存的能看吗不联网 发布:2025-01-12 21:16:47 浏览:768
算法工作原理 发布:2025-01-12 20:36:38 浏览:25
网络访问监控软件 发布:2025-01-12 20:26:57 浏览:466
养羊啦源码 发布:2025-01-12 20:25:48 浏览:571
轩逸朗逸哪个配置最好 发布:2025-01-12 20:10:00 浏览:50
主板存储器分 发布:2025-01-12 20:04:46 浏览:377
数据库逻辑运算 发布:2025-01-12 20:03:54 浏览:572
javawindows服务器搭建 发布:2025-01-12 19:59:37 浏览:571
linux关闭iptables 发布:2025-01-12 19:58:49 浏览:151
服务器电脑名字改了影响数据库吗 发布:2025-01-12 19:58:44 浏览:653