蓝桥杯单片机 温度记录器
程序员文章站
2022-06-08 20:42:24
...
蓝桥杯 温度记录器
题目要求
main.c
#include <stc15f2k60s2.h>
#include <delay.h>
#include <onewire.h>
#include <ds1302.h>
sbit s4=P3^3;
sbit s5=P3^2;
sbit s6=P3^1;
sbit s7=P3^0;
unsigned char code SMG_duanma[12]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xbf,0xff};
unsigned char code SMG_position[9]={0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80};
unsigned int tem[10];//存放读取的10次温度
unsigned char count,cnt,time,begin;//time为采集时间,begin为间隔闪烁状态,cnt为温度读取的次数,从0开始到9
unsigned char temptime=1,SMGflag=1;//temptime为温度采集间隔,SMGflag为数码管界面标志位
unsigned char yi,er,san,si,wu,liu,qi,ba;
void InitHC138(unsigned char channel)//74HC138初始化
{
switch(channel)
{
case 4 :P2=(P2&0X1F)|0X80;break;
case 5 :P2=(P2&0X1F)|0XA0;break;
case 6 :P2=(P2&0X1F)|0XC0;break;
case 7 :P2=(P2&0X1F)|0XE0;break;
}
}
/*****************系统初始化函数**********************/
void InitSystem()
{
InitHC138(4); //关闭LED灯
P0=0xff;
InitHC138(5); //关闭继电器和蜂鸣器
P0=0x00;
InitHC138(6); //关闭数码管
P0=0xff;
InitHC138(7);
P0=0xff;
}
/*****************数码管显示函数**********************/
void SMG_Select(unsigned char pos,unsigned char dat)
{
InitHC138(6);
P0=SMG_position[pos];
InitHC138(7);
P0=SMG_duanma[dat];
}
void SMG_control()
{
if(SMGflag==1){yi=er=san=si=wu=11;liu=10;qi=temptime/10;ba=temptime%10;}//参数设置界面
else if(SMGflag==2) //时钟显示界面
{
yi=Timer[2]/16;er=Timer[2]%16;si=Timer[1]/16;wu=Timer[1]%16;
qi=Timer[0]/16;ba=Timer[0]%16;
if(begin==1) {san=liu=10;}
else if(begin==0) {san=liu=11;}
}
else if(SMGflag==3)//采集完成界面
{
yi=liu=10;er=cnt/10;san=cnt%10;si=wu=11;qi=tem[cnt]/10;ba=tem[cnt]%10;
}
else if(SMGflag==4)//切换显示界面
{
yi=liu=10;er=cnt/10;san=cnt%10;si=wu=11;qi=tem[cnt]/10;ba=tem[cnt]%10;
}
}
void SMG_Display()
{
SMG_control(); //状态选择
SMG_Select(1,yi); Delay2ms();
SMG_Select(2,er); Delay2ms();
SMG_Select(3,san);Delay2ms();
SMG_Select(4,si); Delay2ms();
SMG_Select(5,wu); Delay2ms();
SMG_Select(6,liu);Delay2ms();
SMG_Select(7,qi); Delay2ms();
SMG_Select(8,ba); Delay2ms();
}
void LED()
{
if(SMGflag==3)//采集完成,L1闪烁
{
if(begin==1){InitHC138(4);P0=0xfe;}
else if(begin==0){InitHC138(4);P0=0xff;}
}
}
void InitTimer0()
{
TMOD=0X01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
ET0=1;
EA=1;
}
void Timer0(void)interrupt 1
{
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
count++;
if(count==20)//1s时间
{
begin=!begin;//形成一个方波信号
count=0;
if(SMGflag==2)//进入时钟界面后开始采集温度
{
time++;
if(time==temptime)
{
time=0;
Read_temperature();//设置的间隔时间到,开始读取温度
tem[cnt++]=temp;//将读取的温度存放于tem[]数组中
if(cnt==10) //采集10次后,进入采集完成界面,停止温度采集
{
cnt=0;
SMGflag=3;
}
}
}
if(SMGflag==4) //切换显示下,索引号1s加1,即1s钟显示一次已读取的温度,显示10次后,进行循环显示
{
cnt++;
if(cnt==10) cnt=0;
}
}
}
void KeyScan()
{
if(s4==0)//设置采集间隔时间键
{
Delay10ms();
if(s4==0&&SMGflag==1)//在参数设置界面下有效
{
switch(temptime)
{
case 1 :temptime=5 ;break;
case 5 :temptime=30;break;
case 30:temptime=60;break;
case 60:temptime=1 ;break;
}
}
while(s4==0) SMG_Display();
}
if(s5==0)//确认采集间隔时间,开始采集温度并进入时钟界面
{
Delay10ms();
if(s5==0&&SMGflag==1)//在参数设置界面下有效
{
TR0=1; //开始采集温度
SMGflag=2; //进入时钟界面
}
while(s5==0) SMG_Display();
}
if(s6==0)
{
Delay10ms();
if(s6==0&&SMGflag==3) //在采集完成界面下有效
{
InitHC138(4);P0=0xff;//关闭L1
SMGflag=4; //进入切换显示界面
}
while(s6==0) SMG_Display();
}
if(s7==0)
{
Delay10ms();
if(s7==0&&SMGflag==4)
{
SMGflag=1; //进入参数设置界面
}
while(s7==0) SMG_Display();
}
}
void main()
{
InitSystem();
InitTimer0();
Init_DS1302();
while(1)
{
Read_DS1302();
KeyScan();
SMG_Display();
LED();
}
}
ds1302.c
#include <stc15f2k60s2.h>
#include <intrins.h>
#include <ds1302.h>
unsigned char code ds1302_Write[7]={0x80,0x82,0x84,0x86,0x88,0x8a,0x8c};
unsigned char code ds1302_Read[7]={0x81,0x83,0x85,0x87,0x89,0x8b,0x8d};
unsigned char Timer[7]={0x50,0x59,0x23,0x00,0x00,0x00,0x00};
sbit SCK=P1^7;
sbit SDA=P2^3;
sbit RST = P1^3; // DS1302复位
void Write_Ds1302_Byte(unsigned char temp)
{
unsigned char i;
for (i=0;i<8;i++)
{
SCK=0;
SDA=temp&0x01;
temp>>=1;
SCK=1;
}
}
void Write_Ds1302( unsigned char address,unsigned char dat )
{
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
Write_Ds1302_Byte(dat);
RST=0;
}
unsigned char Read_Ds1302 ( unsigned char address )
{
unsigned char i,temp=0x00;
RST=0;
_nop_();
SCK=0;
_nop_();
RST=1;
_nop_();
Write_Ds1302_Byte(address);
for (i=0;i<8;i++)
{
SCK=0;
temp>>=1;
if(SDA)
temp|=0x80;
SCK=1;
}
RST=0;
_nop_();
RST=0;
SCK=0;
_nop_();
SCK=1;
_nop_();
SDA=0;
_nop_();
SDA=1;
_nop_();
return (temp);
}
void Init_DS1302()
{
unsigned char i;
Write_Ds1302(0x8e,0x00);
for(i=0;i<7;i++)
{
Write_Ds1302(ds1302_Write[i],Timer[i]);
}
Write_Ds1302(0x8e,0x80);
}
void Read_DS1302()
{
unsigned char i;
for(i=0;i<7;i++)
{
Timer[i]=Read_Ds1302(ds1302_Read[i]);
}
}
onewire.c
#include "onewire.h"
unsigned int temp;
//单总线延时函数
void Delay_OneWire(unsigned int t)
{
unsigned char aa;
while(t--)
{
for(aa=0;aa<12;aa++);
}
}
//DS18B20芯片初始化
bit Init_DS18B20(void)
{
bit initflag = 0;
DQ = 1;
Delay_OneWire(12);
DQ = 0;
Delay_OneWire(80);
DQ = 1;
Delay_OneWire(10);
initflag = DQ;
Delay_OneWire(5);
return initflag;
}
//通过单总线向DS18B20写一个字节
void Write_DS18B20(unsigned char dat)
{
unsigned char i;
for(i=0;i<8;i++)
{
DQ = 0;
DQ = dat&0x01;
Delay_OneWire(5);
DQ = 1;
dat >>= 1;
}
Delay_OneWire(5);
}
//从DS18B20读取一个字节
unsigned char Read_DS18B20(void)
{
unsigned char i;
unsigned char dat;
for(i=0;i<8;i++)
{
DQ = 0;
dat >>= 1;
DQ = 1;
if(DQ)
{
dat |= 0x80;
}
Delay_OneWire(5);
}
return dat;
}
void Read_temperature()
{
unsigned char LSB,MSB;
Init_DS18B20();
Write_DS18B20(0xcc);
Write_DS18B20(0x44);
Delay_OneWire(200);
Init_DS18B20();
Write_DS18B20(0xcc);
Write_DS18B20(0xBE);
LSB=Read_DS18B20();
MSB=Read_DS18B20();
Init_DS18B20();
temp=(MSB<<8)|LSB;
temp=temp>>4;
}
delay.c
#include <stc15f2k60s2.h>
#include <intrins.h>
#include <delay.h>
void Delay2ms() //@11.0592MHz
{
unsigned char i, j;
_nop_();
_nop_();
i = 22;
j = 128;
do
{
while (--j);
} while (--i);
}
void Delay10ms() //@11.0592MHz
{
unsigned char i, j;
i = 108;
j = 145;
do
{
while (--j);
} while (--i);
}
完整工程文件请摸我