當前位置:首頁 » 格式模板 » 單片機的數字型溫濕度測量計摘要

單片機的數字型溫濕度測量計摘要

發布時間: 2021-03-25 21:07:48

㈠ 單片機如何做數字溫度計

用DS18B20做,單匯流排,數字信號
程序,原理圖網上都有,很普遍了,網上一搜多得很,
連接圖,下一個DS18B20的數據手冊就有
這個網站有
http://www.fxdzw.com/xpzl.htm

㈡ 最近在做單片機的論文,題目是數字溫度計;要求(1)測量-40℃-90℃范圍的溫度(2)四位七段LED數碼管顯示

#include "LCD1602.h"
#include "LCD1602define.h"
#include "18b20.h"
#define uchar unsigned char
void delayms(unsigned int count);//延時程序

void delayms(unsigned int count)
{
unsigned int i,j;
for(i=0;i<count;i++)
for(j=0;j<120;j++);
}
/**************主程序*********************/
main()
{
uchar tem_h,tem_l;
uchar i,su[7];
uint tem;
delayms(1000); //開機延時程序
LCD_initial(); //LCD初始化
LCD_ClrAll();
/*******為了避免第1次讀取溫度顯示85°C*******/
tem=ReadTemperature();//讀取溫度值
tem_h=tem/10+0x30; //溫度高位
tem_l=tem % 10+0x30; //溫度低位
delayms(1000); //延時程序
/***************************************/
LCD_cursor(0); //游標起始地址 ,第一行地址是0x00~0x0F,第二行地址是0x40~0x4f
LCD_prints(" DS18B20 Test ");
LCD_cursor(0x40);
LCD_prints("Temperature: ");

//////////LCD1602顯示溫度單位'C////////
LCD_cursor(0x4e);
LCD_printc(0xdf);
LCD_cursor(0x4f);
LCD_printc(0x43);

while(1)
{
tem=ReadTemperature();//讀取溫度值
tem_h=tem/10+0x30; //溫度高位
tem_l=tem % 10+0x30; //溫度低位
/////////LCD顯示溫度//////////
LCD_cursor(0x4c);
LCD_printc(tem_h);
LCD_cursor(0x4d);
LCD_printc(tem_l);
}
}

㈢ 關於溫濕度檢測儀的論文英文摘要翻譯,在線等答案

Abstract: this article describes the temperature and humidity
measuring instrument design of hardware circuit and software programs and
processes, and ultimately gives the hardware schematics and source code. The
temperature and humidity measuring instrument STC89C51 as the core is based on
single-chip microcomputer controlled devices, with small size, low cost, simple
to use, high reliability of work. System with integrated temperature and
humidity sensor DHT11 as the data acquisition device, real-time detection of the
current temperature, humidity, collection digital signal data temperature and
humidity sensor, and can be sent directly to the STC89C51 single-chip for
processing, and ultimately by the four-in-one LED digital tube display of
current temperature and humidity data. Real-time detection system in addition to
the current ambient temperature and humidity, while according to the needs of
different environments, set temperature maximum temperature exceeds the set
value range, the alarm buzzer alarm circuit. The system can easily achieve
real-time detection of the temperature and humidity.

㈣ 基於單片機溫濕度測量系統(摘要翻譯)

Along with the humiture examination system's widespread utilization, the different profession and the domain have the various requirement and the standard to the humiture examination. This design mainly uses in the ordinary indoor humiture survey. Uses the DS2438, HIH3605B integration chip to take the humiture sensor. In the article has analyzed the humiture survey principle of work and the process, proposed the humiture examination system design's overall plan, has carried on the plan proof to each submole design and compares. The hardware design uses protel the 99se software, has completed the monolithic integrated circuit smallest system, the LCD display circuit, sensor's schematic diagram and the PCB chart. The software design uses Keil uVision2, has completed the program mole each mole design programming, has realized to the humiture signal processing process programming and the debugging. This measurement system humidity measuring range 0%~100%, resolution ±%; Temperature survey scope - 40~+125℃, resolution ±0.5℃. Can meet the daily life humiture survey requirements.

key words: AT89S52; HIH3605B; DS2438; LCD; Data acquisition; Data processing

㈤ 求一份基於51系列單片機的數字式溫濕度計的單片機課程設計報告,要求如下

單片機和dht11通信讀取時,每次讀5個位元組:兩位元組濕度數據、兩位元組溫度數據、一位元組校驗數據。這個不難,看看數據手冊,找找參考程序就能搞定的

㈥ 基於單片機的數字溫度計設計

按你的要求設計了程序並且通過ProteUS模擬
無償提供原理圖,ProteUS模擬工程(可運行),供參考運行效果,及原理圖的設計。
推薦:01 基於單片機的數字報警溫度計( http://ishare.iask.sina.com.cn/f/11655563.html )

; 源程序為匯編
; 實時顯示溫度
; 高於高限,低於低限,進行聲光報警
; 溫度高低限可自由設定

; 上電顯示 543210
; 讀出溫度後實時顯示溫度
; 溫度高於上限溫度時,顯示"HH****", 並進行聲光報警
; 溫度低於下限溫度時,顯示"LL****", 並進行聲光報警
; 設定鍵 進行高低限設定 循環為 "實時溫度" 「L ***」 「H ***」
; 可用+ -鍵進行修改報警值

㈦ 關於51單片機的多功能溫度顯示器論文中的摘要怎麼寫

課題主要介紹了溫度感測器的硬體電路的設計和系統軟體設計。硬體電路主要包括主控制器,測溫電路和顯示電路等,控制器採用單片機AT89C51,溫度感測器採用美國DALLAS半導體公司生產的DS18B20,顯示電路採用4位共陽極LED數碼管以動態掃描法直讀顯示。系統程序主要包括主程序,讀出溫度子程序,溫度轉換命令子程序,計算溫度子程序,顯示數據刷新子程序等。此外,還介紹了系統的調試和性能分析。
由於採用了改進型智能溫度感測器DS18B20作為檢測元件,與傳統的溫度計相比,本數字溫度計減少了外部的硬體電路,具有低成本和易使用的特點。DS18B20溫度計還可以在過限報警、遠距離多點測溫控制等方面進行應用開發,具有很好的發展前景。DS18B20是一種可組網的高精度數字式溫度感測器,由於其具有單匯流排的獨特優點,可以使用戶輕松地組建起感測器網路,並可使多點溫度測量電路變得簡單、可靠。介紹了DS18B20數字溫度感測器在單片機下的硬體連接及軟體編程,並給出了軟體流程圖。
在該論文中,我們通過對單片機和溫度感測器的設計,從中學到了許多有用的東西,其中我們明白了如何去設計一個產品,首先要有性價比、良好的適應性,其次要知道設計的關鍵,最後也懂得了設計與實際的聯系。

關鍵詞:
單片機系統;數字溫度感測器;單匯流排;過限報警
This thesis mainly include hardware circuit design and system design process. Hardware circuit include the main controller, temperature measurement circuit and display circuit, the controller using SCM AT89C51, temperature sensors using the proction DS18B20 of United States DALLAS Semiconctor, and the display circuit using four common anode of LED by digital dynamic scanning and Direct Reading show. The system procere mainly includes main procere, reading temperature sub-procere, the temperature conversion orderanies sub-procere, computing the temperature sub- procere, the manifestation data breaks sub-procere etc. In addition, it introced a system debugging and performance analysis.
In order to adopting the improvement type the intelligence temperature transcer DS18 B20 Be examine component, compared with the traditional thermometer, this numerical thermometer reced the hardware telephone of the exterior, have low cost with the characteristics of the easy usage. The DS18 B20 thermometers can report to the police still in the heat, long-distance leave to click to measure control much etc. carry on an applied development, having good development foreground. As a kind of high-accuracy digital net temperature sensor,DS18 B20 can be used building a sensor net easily. It can also make the net simple and reliable with it's special 1-wire interface .This paper introces the application of DS18B20 with single chip processor.
In that thesis, we from the design of the SCM and the temperature transcer, we learned many useful things, among them, we understand how go to design a proct, first it should have to have good quality but inexpensive, adaptabilities, than should know hinge of the design, the last we also know the communication between design and practice.

Keyword:
SCM;Digital thermometer; Single bus;Over the boundary to alarm
僅供參考!!!

㈧ 基於單片機溫度測量與控制 畢業論文

摘要
本設計的溫度測量計加熱控制系統以AT89S52單片機為核心部件,外加溫度採集電路、鍵盤顯示電路、加熱控制電路和越限報警等電路。採用單匯流排型數字式的溫度感測器DSI8B20,及行列式鍵盤和動態顯示的方式,以容易控制的固態繼電器作加熱控制的開關器件。本作品既可以對當前溫度進行實時顯示又可以對溫度進行控制,以使達到用戶需要的溫度,並使其恆定再這一溫度。人性化的行列式鍵盤設計使設置溫度簡單快速,兩位整數一位小數的顯示方式具有更高的顯示精度。建立在模糊控制理論控制上的控制演算法,是控制精度完全能滿足一般社會生產的要求。通過對系統軟體和硬體設計的合理規劃,發揮單片機自身集成眾多系統及功能單元的優勢,再不減少功能的前提下有效的降低了硬體的成本,系統操控更簡便。
實驗證明該溫控系統能達到0.2℃的靜態誤差,0.45℃的控制精度,以及只有0.83%的超調量,因本設計具有很高的可靠性和穩定性。

關鍵詞:單片機 恆溫控制 模糊控制
引言
溫度是工業控制中主要的被控參數之一,特別是在冶金、化工、建材、食品、機械、石油等工業中,具有舉足重輕的作用。隨著電子技術和微型計算機的迅速發展,微機測量和控制技術得到了迅速的發展和廣泛的應用。 採用單片機來對溫度進行控制,不僅具有控制方便、組態簡單和靈活性大等優點,而且可以大幅度提高被控溫度的技術指標,從而能夠大大提高產品的質量和數量。MSP430系列單片機具有處理能強、運行速度快、功耗低等優點,應用在溫度測量與控制方面,控制簡單方便,測量范圍廣,精度較高。

溫度感測器將溫度信息變換為模擬電壓信號後,將電壓信號放大到單片機可以處理的范圍內,經過低通濾波,濾掉干擾信號送入單片機。在單片機中對信號進行采樣,為進一步提高測量精度,采樣後對信號再進行數字濾波。單片機將檢測到的溫度信息與設定值進行比較,如果不相符,數字調節程序根據給定值與測得值的差值按PID控制演算法設計控制量,觸發程序根據控制量控制執行單元。如果檢測值高於設定值,則啟動製冷系統,降低環境溫度;如果檢測值低於設定值,則啟動加熱系統,提高環境溫度,達到控制溫度的目的。

圖形點陣式液晶可顯示用戶自定義的任意符號和圖形,並可卷動顯示,它作為攜帶型單片機系統人機交互界面的重要組成部分被廣泛應用於實時檢測和顯示的儀器儀表中。支持漢字顯示的圖形點陣液晶在現代單片機應用系統中是一種十分常用的顯示設備,漢字BP機、手機上的顯示屏就是圖形點陣液晶。它與行列式小鍵盤組成了現代單片機應用系統中最常用的人機交互界面。

本文設計了一種基於MSP430單片機的溫度測量和控制裝置,能對環境溫度進行測量,並能根據溫度給定值給出調節量,控制執行機構,實現調節環境溫度的目的。

━、硬體設計
1:MSP430系列單片機簡介及選型
單片機即微控制器,自其開發以來,取得了飛速的發展。單片機控制系統在工業、交通、醫療等領域的應用越來越廣泛,在單片機未開發之前,電子產品只能由復雜的模擬電路來實現,不僅體積大,成本高,長期使用後元件老化,控制精度大大降低,單片機開發以後,控制系統變為智能化了,只需要在單片機外圍接一點簡單的介面電路,核心部分只是由人為的寫入程序來完成。這樣產品體積變小了,成本也降低了,長期使用也不會擔心精度達不到了。特別是嵌入式技術的發展,必將為單片機的發展提供更廣闊的發展空間,近年來,由於超低功耗技術的開發,又出現了低功耗單片機,如MSP430系列、ZK系列等,其中的MSP430系列單片機是美國德州儀器(TI)的一種16位超低功耗單片機,該單片機

熱點內容
塗鴉論文 發布:2021-03-31 13:04:48 瀏覽:698
手機資料庫應用 發布:2021-03-31 13:04:28 瀏覽:353
版面217 發布:2021-03-31 13:04:18 瀏覽:587
知網不查的資源 發布:2021-03-31 13:03:43 瀏覽:713
基金贖回參考 發布:2021-03-31 13:02:08 瀏覽:489
懸疑故事範文 發布:2021-03-31 13:02:07 瀏覽:87
做簡單的自我介紹範文 發布:2021-03-31 13:01:48 瀏覽:537
戰略地圖參考 發布:2021-03-31 13:01:09 瀏覽:463
收支模板 發布:2021-03-31 13:00:43 瀏覽:17
電氣學術會議 發布:2021-03-31 13:00:32 瀏覽:731