找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1699|回复: 0
收起左侧

10s的秒表单片机程序+电路图

[复制链接]
ID:520474 发表于 2019-4-24 14:58 | 显示全部楼层 |阅读模式
4B}MF]HF)TBOXZ7%UP[OV.png

#include<reg51.h>
#define uchar unsigned char
#define uint unsigned int
sbit K1=P3^7;  
uchar
i,Second_Counts,Key_Flag_Idx;
bit Key_State;  
uchar
DSY_CODE[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
//延时
void DelayMS(uint ms)
{
uchar t;
while(ms--) for(t=0;t<120;t++);
}
//处理按键事件
void Key_Event_Handle()
{
if(Key_State==0)
{
Key_Flag_Idx=(Key_Flag_Idx+1)%3;
switch(Key_Flag_Idx)
{  
case 1:EA=1;ET0=1;TR0=1;break;
case 2:EA=0;ET0=0;TR0=0;break;
case 0:P0=0x3f;P2=0x3f;i=0;Second_Counts=0;
}
}
}
//主程序
void main()
{
P0=0x3f;            //显示 00
P2=0x3f;
i=0;
Second_Counts=0;
Key_Flag_Idx=0;          //按键次数(取值 0,1,2,3)
Key_State=1;      //按键状态
TMOD=0x01;    //定时器 0 方式 1
TH0=(65536-40000)/256;    //定时器 0:15ms
TL0=(65536-40000)%256;
while(1)
{
if(Key_State!=K1)
{  
DelayMS(10);
Key_State=K1;
Key_Event_Handle();
}
}
}   
//T0 中断函数
void DSY_Refresh() interrupt 1
{
TH0=(65536-40000)/256;   //恢复定时器 0 初值
TL0=(65536-40000)%256;
if(++i==2)
{
i=0;
Second_Counts++;   //50ms*2=0.1s 转换状态
P0=DSY_CODE[Second_Counts/10];
P2=DSY_CODE[Second_Counts%10];
if(Second_Counts==100) Second_Counts=0; //满 100(10s)后显示 00  
}
}

评分

参与人数 1黑币 +50 收起 理由
admin + 50 共享资料的黑币奖励!

查看全部评分

回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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