⑴ 求基於c51單片機控制的數字溫度計畢業設計
基於c51單片機控制的數字溫度計,這我給你Q1619157516
⑵ 基於單片機的數字溫度計的設計
這個用ds18b20就比較好的,可以用89c51,lcd1602進行顯示
⑶ 求求基於51單片機的數字溫度計設計 單片機AT89C51 測溫感測器使DS18B20 圖在下面!只要c語言程序
======================================================================
#include"reg51.h" //包含頭文件
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
float tt; //tt為採集的溫度值
code uchar TAB[]={0xc0,0xf9,0xa4,0xb0,0x99,
0x92,0x82,0xf8,0x80,0x90}; //數碼管段碼
uchar str_TME[4]={0,0,0,0};
unsigned char MAX=30;
unsigned char MIN=10;
sbit DQ =P2^4; //定義通信埠
sbit fm =P2^7;
//短延時函數
void delay(unsigned int i)
{
while(i--);
}
//1ms延時函數
void delay1(uchar ms)
{
uchar i;
while(ms--)
for(i=0;i<125;i++);
}
//DS18B20初始化函數
Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1; //DQ復位
delay(8); //稍做延時
DQ = 0; //單片機將DQ拉低
delay(80); //精確延時 大於 480us
DQ = 1; //拉高匯流排
delay(14);
x=DQ; //稍做延時後 如果x=0則初始化成功 x=1則初始化失敗
delay(20);
}
//讀一個位元組
ReadOneChar(void)
{
unsigned char i=0;
unsigned char dat=0;
for (i=8;i>0;i--)
{
DQ=0; // 給脈沖信號
dat>>=1;
DQ=1; // 給脈沖信號
if(DQ)
dat|=0x80;
delay(4);
}
return(dat);
}
//寫一個位元組
WriteOneChar(unsigned char dat)
{
unsigned char i=0;
for (i=8;i>0;i--)
{
DQ=0;
DQ=dat&0x01;
delay(5);
DQ=1;
dat>>=1;
}
delay(4);
}
//讀取溫度
ReadTemperature(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳過讀序號列號的操作
WriteOneChar(0x44); // 啟動溫度轉換
Init_DS18B20();
WriteOneChar(0xCC); //跳過讀序號列號的操作
WriteOneChar(0xBE); //讀取溫度寄存器等(共可讀9個寄存器) 前兩個就是溫度
a=ReadOneChar();
b=ReadOneChar();
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
return(tt);
}
uchar tmel=0;
uchar ad_dat;
bit sim=1;
/********************定時器中斷函數********************/
void tme_tr0(void) interrupt 1
{
TL0=0xb0;
TH0=0x3c;
if(++tmel==20)
{
tmel=0;
sim=1;
}
}
/*****************定義數碼管顯示***************************/
sbit k1=P1^0;
sbit k2=P1^1;
sbit k3=P1^2;
sbit k4=P1^3;
void VAL_xs()
{
P0=TAB[str_TME[0]]; //?????
k1=0;
delay1(5);
k1=1;
P0=(TAB[str_TME[1]])&0x7f;
k2=0;
delay1(5);
k2=1;
P0=TAB[str_TME[2]];
k3=0;
delay1(5);
k3=1;
P0=0xc6;
k4=0;
delay1(5);
k4=1;
}
void changs() //數據轉換
{
uchar tint,tfloat;
ReadTemperature();//讀溫度
tint=(int)(tt);
tfloat=(tt-tint)*100;
str_TME[0]=tint/10;
str_TME[1]=tint%10;
str_TME[2]=tfloat/10;
}
write_tempere_alarm()
{
if(((int)tt>MAX)||((int)tt<MIN ) )
{fm=0;}
else
{fm=1;}
}
main()
{
P1=0xc0;
IE=0x82;
TMOD=0x01;
IP=0x01;
TL0=0xb0;
TH0=0x3c;
TR0=1;
while(1)
{
VAL_xs();
write_tempere_alarm();
if(sim==1)
{changs();
sim=0;
}
}
}
⑷ 基於51單片機及DS18B20溫度感測器的數字溫度計設計
你好!
1、關於這個數字溫度計;
是有實物?發一下原理圖
2、還是用模擬模擬出效果?
3、顯示器件數碼管還是液晶
4、是否帶有溫度報警功能
⑸ MCS51單片機 數字溫度計 設計
對,用DS18b20很簡單,而且可以申請樣片
http://..com/question/98097423.html
http://hi..com/szcgq/blog/item/ff96dc1603818e1f962b43f8.html
http://diewater.bokee.com/3566937.html
http://www.jdzj.com/pic/Class346/Class355/20080726171027.html
http://www.61ic.com/Technology/embed/200604/3423.html
http://blog.csdn.net/ncdawen/archive/2006/03/21/631696.aspx
⑹ 課程設計:基於單片機的數字溫度計的設計
說實話,自己做吧,不難的,理工科的嘛,不多動手出來不好混的。
題目也有點問題內,既然是數字溫度計,容為什麼還要用AD?
採用8031晶元用與中斷程序
通過8155晶元用於8位LED動態顯示電路
這兩個很少用吧,我記得就在微機原理的試驗箱上見過...
你可以搜索DS18B20,大家在學校最常用的數字溫度計,51的程序也一大堆,搜索下就有了。