版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、 智能温度报警系统摘要:随着时代的进步和发展,单片机技术已经普及到我们生活,工作,科研,各个领域,已经成为一种比较成熟的技术,本文将介绍一种基于单片机控制的数字温度计,本温度计属于多功能温度计,可以设置上下报警温度,当温度不在设置范围内时,可以报警。 关键词:单片机,数字控制,温度计, DS18B20,AT89S51ABSTRACTAlong with the progress and developments of the ages, a machine technique has already make widely available we are living, work, the
2、research, each realm, has already become a kind of to compare the mature technique, this text will introduce a kind of numerical thermometer that controls according to a machine, this thermometer belongs to the multi-function thermometer, can establish the top and bottom to report to the police the
3、temperature, being the temperature not within the scope of establish, can report to the police.Key Word: numeral control, thermometer,DS18B20,AT89S52 引言随着人们生活水平的不断提高,单片机控制无疑是人们追求的目标之一,它所给人带来的方便也是不可否定的,其中数字温度计就是一个典型的例子,但人们对它的要求越来越高,要为现代人工作、科研、生活、提供更好的更方便的设施就需要从数单片机技术入手,一切向着数字化控制,智能化控制方向发展。本设计所介绍的数字温度
4、计与传统的温度计相比,具有读数方便,测温范围广,测温准确,其输出温度采用数字显示,主要用于对测温比较准确的场所,或科研实验室使用,该设计控制器使用单片机AT89S51,测温传感器使用DS18B20,用3位共阳极LED数码管以串口传送数据,实现温度显示,能准确达到以上要求。智能温度报警系统:主要参数序号参数数值备注1工作电压4V6V直流2功率<8W3温度测量量程099摄氏度4温度可设定值099摄氏度5误差范围精度误差小于0.5主要元器件序号名称作用个数1AT89S52单片机运算处理12DS1802传感器温度测量13数码管LG5011BSR温度显示44蜂鸣器温度报警15变压器变压16整流桥交
5、流变直流17三端稳压器7805稳定电压值18AT24C02掉电存储器元件清单元件名称单位(只)型号参数备注温度传感器1DS18B20-55100度 5V单片机1AT89S52变压器1220V变9V9V/8W整流二极管4IN4007C1,C2230PC3,C6222UF/25VC41220UF/25VC512.2UF/25R1R67100欧姆1/8WR7R93510欧姆1/8WR10110K1/8WR11R1554.7K1/8WR16,R17,R183510欧姆1/8WD01发光二极管白发红D11发光二极管白发蓝D2,D3,D53发光二极管红发红稳压管1LM7805Y11晶震11.0592HZS
6、1S33按键Q1Q348550NPNU10U156LG5011BSR7段数码管电路板2块掉电保护124c02电源线程序:#include<reg52.h>#include <stdio.h>#include <absacc.h>code unsigned char seg7code11= 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x40; /显示段码sbit TMDAT =P31; /DS18B20 的数据输入/输出脚DQ,根据情况设定sbit jia=P21;sbit jian=P20;sbit
7、hong=P10;/红色警告灯sbit sheng=P11;/蜂鸣器sbit lan=P12;/兰色灯bit write=0; /写24C08 的标志;j=30;unsigned int sdata;/测量到的温度的整数部分unsigned char xiaoshu1;/小数第一位unsigned char xiaoshu2;/小数第二位unsigned char xiaoshu;/两位小数bit fg=1; /温度正负标志/24C08 读写驱动程序/sbit scl=P34; / 24c08 SCLsbit sda=P35; / 24c08 SDAvoid delay1(unsigned c
8、har x) unsigned int i;for(i=0;i<x;i+);void flash() ; ; void x24c08_init() /24c08 初始化子程序scl=1; flash(); sda=1; flash();void start() /启动(I方C)总线sda=1; flash(); scl=1; flash(); sda=0; flash(); scl=0; flash();void stop() /停止(I方C)总线sda=0; flash(); scl=1; flash(); sda=1; flash();void writex(unsigned cha
9、r j) /写一个字节 unsigned char i,temp;temp=j;for (i=0;i<8;i+)temp=temp<<1; scl=0; flash(); sda=CY; flash(); scl=1; flash();scl=0; flash(); sda=1; flash();unsigned char readx() /读一个字节unsigned char i,j,k=0;scl=0; flash(); sda=1;for (i=0;i<8;i+)flash(); scl=1; flash();if (sda=1) j=1;else j=0;k=(
10、k<<1)|j;scl=0;flash(); return(k);void clock() /(I方C)线时钟unsigned char i=0;scl=1; flash();while (sda=1)&&(i<255)i+;scl=0; flash();/从24c02 的地址address 中读取一个字节数据/unsigned char x24c08_read(unsigned char address)unsigned char i;start(); writex(0xa0);clock(); writex(address);clock(); start(
11、);writex(0xa1); clock();i=readx(); stop();delay1(10);return(i);/向24c02 的address 地址中写入一字节数据info/void x24c08_write(unsigned char address,unsigned char info)EA=0;start(); writex(0xa0);clock(); writex(address);clock(); writex(info);clock(); stop();EA=1;delay1(50);/*/24C08 读写驱动程序完/void Delay2(unsigned in
12、t tc) /延时程序while( tc != 0 )unsigned int i;for(i=0; i<100; i+);tc-;*/*显示延时程序*/void Delay(unsigned int tc)while( tc != 0 )unsigned int i;for(i=0; i<80; i+);tc-;/延时部分/void yanshi (unsigned int count) unsigned char i;while(count-)for(i=0;i<115;i+);/发送复位/void fashong (void) unsigned char i;TMDAT
13、 = 0; for(i=0;i<103;i+);TMDAT = 1; for(i=0;i<4;i+);bit tmrbit (void) /读一位/ unsigned int i;bit dat;TMDAT = 0;i+;TMDAT = 1;i+; i+; /微量延时 /dat = TMDAT;for(i=0;i<8;i+);return (dat);unsigned char tmrbyte (void) /读一个字节unsigned char i,j,dat;dat = 0;for (i=1;i<=8;i+) j = tmrbit(); dat = (j <&
14、lt; 7) | (dat >> 1); return (dat);void tmwbyte (unsigned char dat) /写一个字节unsigned char j,i;bit testb;for (j=1;j<=8;j+) testb = dat & 0x01;dat = dat >> 1;if (testb) TMDAT = 0; /写0i+; i+;TMDAT = 1;for(i=0;i<8;i+); else TMDAT = 0; /写0for(i=0;i<8;i+);TMDAT = 1;i+; i+;void tmstar
15、t (void) /发送ds1820 开始转换fashong(); /复位yanshi(1); /延时tmwbyte(0xcc); /跳过序列号命令tmwbyte(0x44); /发转换命令 44H, void tmrtemp (void) /读取温度unsigned char a,b;fashong (); /复位yanshi (1); /延时tmwbyte (0xcc); /跳过序列号命令tmwbyte (0xbe); /发送读取命令a = tmrbyte (); /读取低位温度b = tmrbyte (); /读取高位温度if(b>0x7f) /最高位为1 时温度是负a=a; b=
16、b+1; /补码转换,取反加一fg=0; /读取温度为负时fg=0sdata = a/16+b*16; /整数部分xiaoshu1 = (a&0x0f)*10/16; /小数第一位xiaoshu2 = (a&0x0f)*100/16%10;/小数xiaoshu=xiaoshu1*10+xiaoshu2; /小数void DS18B20PRO(void) tmstart();/yanshi(5); /如果是不断地读取的话可以不延tmrtemp(); /读取温度,执行完毕温度将存于void Led()if(fg=1) /温度为正时显示的数据 P2=P2&0xef;P0=se
17、g7codesdata/10; /输Delay(2); P2=P2|0xf0; P2=P2&0xdf;P0=seg7codesdata%10|0x80; /输出个Delay(2); P2=P2|0xf0; P2=P2&0xbf;P0=seg7codexiaoshu1; /输出小数点Delay(2); P2=P2|0xf0; P2=P2&0x7f;P0=seg7codexiaoshu2; /输出小Delay(1); P2=P2|0xf0;Delay(2); P2=P2|0xf0;P2=P2&0xf7;P0=seg7codej/10; /输出十位Delay(2);
18、P2=P2|0x0f; P2=P2&0xfb;P0=seg7codej%10|0x80; /输出个位 Delay(1); P2=P2|0x0f;/*P2=P2&0x7f;P0=seg7codesdata/10; /输出十位Delay(8); P2=P2|0xf0;P2=P2&0xbf;P0=seg7codesdata%10|0x80; /输出个位Delay(8); P2=P2|0xf0; P2=P2&0xf7;P0=seg7codexiaoshu1; /输出小数点Delay(8); P2=P2|0xf0; P2=P2&0xfb;P0=seg7codexiaoshu2; /输出小Delay(4); P2=P2|0xf0;Delay(8); P2=P2|0xf0;P2=P2&
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024农产品订购合同
- 2024年广西古建施工承揽合同模板
- 2024年人力资源服务保密协议
- 2024年度城市轨道交通安全监控系统合同
- 2024年建筑内架搭建专业承包合同
- 2024年度产品研发与技术服务合同
- 2024不能强迫续订劳动合同
- 2024年度赠与合同
- 2024年废旧物品回收处理协议
- 2024商铺租赁合同适用于各类商业街、购物中心店铺
- 航站楼管理部《机场使用手册》实施细则
- 脑卒中基本知识课件
- 高效沟通与管理技能提升课件
- 消防维保方案 (详细完整版)
- 四年级上册英语课件- M3U1 In the school (Period 3 ) 上海牛津版试用版(共15张PPT)
- 档案馆建设标准
- 高边坡支护专家论证方案(附有大量的图件)
- 苏教版五年级上册数学试题-第一、二单元 测试卷【含答案】
- 人员定位矿用井口唯一性检测系统
- 电力系统数据标记语言E语言格式规范CIME
- 历史纪年与历史年代的计算方法
评论
0/150
提交评论