主要內(nèi)容:基于檔案館滲漏檢測(cè)需要,要求設(shè)計(jì)一套檔案庫房漏水檢測(cè)報(bào)警系統(tǒng)。
1、包括水浸探測(cè)器,漏水信號(hào)采集模塊,聲光報(bào)警器,聲光報(bào)警控制模塊,漏水報(bào)警控制器,通訊模塊及控制主機(jī)。
2、實(shí)現(xiàn)智能化,自動(dòng)化,集成化的檔案庫房漏水檢測(cè)報(bào)警系統(tǒng)。選擇合適的控制單元,實(shí)現(xiàn)檢測(cè)原理設(shè)計(jì),繪制電路圖,實(shí)現(xiàn)軟件與硬件結(jié)合。
3、測(cè)量溫濕度、漏水狀況,過限報(bào)警,并上傳到上位機(jī)。
4、上位機(jī)用labview。
#include <SHT11.h>
#include"intrins.h"
unsigned char sht_temp; // 保存溫度
unsigned char sht_humi; // 保存濕度
typedef union //定義共用同類型
{
unsigned int i;
float f;
}value;
char ShtWriteByte(unsigned char value)
{
unsigned char i,error=0;
for(i=128;i>0;i>>=1) // 高位為1,循環(huán)右移
{
if (i&value)
Data_P=1; // 和要發(fā)送的數(shù)相與,結(jié)果為發(fā)送的位
else
Data_P=0;
Sck_P=1;
_nop_(); // 延時(shí)3us
_nop_();
_nop_();
Sck_P=0;
}
Data_P=1; // 釋放數(shù)據(jù)線
Sck_P=1;
error=Data_P; // 檢查應(yīng)答信號(hào),確認(rèn)通訊正常
_nop_();
_nop_();
_nop_();
Sck_P=0;
Data_P=1;
return error; // error=1 通訊錯(cuò)誤
}
char ShtReadByte(unsigned char ack)
{
unsigned char i,val=0;
Data_P=1; // 釋放數(shù)據(jù)線
for(i=0x80;i>0;i>>=1) // 高位為1,循環(huán)右移
{
Sck_P=1;
if(Data_P)
val=(val|i); // 讀一位數(shù)據(jù)線的值
Sck_P=0;
}
Data_P=!ack; // 如果是校驗(yàn),讀取完后結(jié)束通訊
Sck_P=1;
_nop_(); // 延時(shí)3us
_nop_();
_nop_();
Sck_P=0;
_nop_();
_nop_();
_nop_();
Data_P=1; // 釋放數(shù)據(jù)線
return val;
}
void ShtTransStart(void)
{
Data_P=1;
Sck_P=0;
_nop_();
Sck_P=1;
_nop_();
Data_P=0;
_nop_();
Sck_P=0;
_nop_();
_nop_();
_nop_();
Sck_P=1;
_nop_();
Data_P=1;
_nop_();
Sck_P=0;
}
void ShtConnectReset(void)
{
unsigned char i;
Data_P=1; //準(zhǔn)備
Sck_P=0;
for(i=0;i<9;i++) //DATA保持高,SCK時(shí)鐘觸發(fā)9次,發(fā)送啟動(dòng)傳輸,通迅即復(fù)位
{
Sck_P=1;
Sck_P=0;
}
ShtTransStart(); //啟動(dòng)傳輸
}
char ShtMeasure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode)
{
unsigned error=0;
unsigned int i;
ShtTransStart(); // 啟動(dòng)傳輸
switch(mode) // 選擇發(fā)送命令
{
case 1 : // 測(cè)量溫度
error+=ShtWriteByte(0x03);
break;
case 2 : // 測(cè)量濕度
error+=ShtWriteByte(0x05);
break;
default:
break;
}
for(i=0;i<65535;i++)
if(Data_P==0)
break; // 等待測(cè)量結(jié)束
if(Data_P)
error+=1; // 如果長(zhǎng)時(shí)間數(shù)據(jù)線沒有拉低,說明測(cè)量錯(cuò)誤
*(p_value) =ShtReadByte(1); // 讀第一個(gè)字節(jié),高字節(jié) (MSB)
*(p_value+1)=ShtReadByte(1); // 讀第二個(gè)字節(jié),低字節(jié) (LSB)
*p_checksum =ShtReadByte(0); // read CRC校驗(yàn)碼
return error; // error=1 通訊錯(cuò)誤
}
void CalcSHT11(float *p_humidity ,float *p_temperature)
{
const float C1=-4.0; // 12位濕度精度 修正公式
const float C2=+0.0405; // 12位濕度精度 修正公式
const float C3=-0.0000028; // 12位濕度精度 修正公式
const float T1=+0.01; // 14位溫度精度 5V條件 修正公式
const float T2=+0.00008; // 14位溫度精度 5V條件 修正公式
float rh=*p_humidity; // rh: 12位 濕度
float t=*p_temperature; // t: 14位 溫度
float rh_lin; // rh_lin: 濕度 linear值
float rh_true; // rh_true: 濕度 ture值
float t_C; // t_C : 溫度 ℃
t_C=t*0.01 - 40; //補(bǔ)償溫度
rh_lin=C3*rh*rh + C2*rh + C1; //相對(duì)濕度非線性補(bǔ)償
rh_true=(t_C-25)*(T1+T2*rh)+rh_lin; //相對(duì)濕度對(duì)于溫度依賴性補(bǔ)償
*p_temperature=t_C; //返回溫度結(jié)果
*p_humidity=rh_true; //返回濕度結(jié)果
}
unsigned char TempCorrect(int temp)
{
if(temp<0) temp=0;
if(temp>970) temp=970;
if(temp>235) temp=temp+10;
if(temp>555) temp=temp+10;
if(temp>875) temp=temp+10;
temp=(temp%1000)/10;
return temp;
}
unsigned char HumiCorrect(unsigned int humi)
{
if(humi>999) humi=999;
if((humi>490)&&(humi<951)) humi=humi-10;
humi=(humi%1000)/10;
return humi+4;
}
void ReadShtData()
{
value humi_val,temp_val; // 定義兩個(gè)共同體,一個(gè)用于濕度,一個(gè)用于溫度
unsigned char error; // 用于檢驗(yàn)是否出現(xiàn)錯(cuò)誤
unsigned char checksum; // CRC
unsigned int temp1,humi1; // 臨時(shí)讀取到的溫濕度數(shù)據(jù)
error=0; //初始化error=0,即沒有錯(cuò)誤
error+=ShtMeasure((unsigned char*)&temp_val.i,&checksum,1); //溫度測(cè)量
error+=ShtMeasure((unsigned char*)&humi_val.i,&checksum,2); //濕度測(cè)量
if(error!=0) //如果發(fā)生錯(cuò)誤,系統(tǒng)復(fù)位
ShtConnectReset();
else
{
humi_val.f=(float)humi_val.i; //轉(zhuǎn)換為浮點(diǎn)數(shù)
temp_val.f=(float)temp_val.i; //轉(zhuǎn)換為浮點(diǎn)數(shù)
CalcSHT11(&humi_val.f,&temp_val.f); //修正相對(duì)濕度及溫度
temp1=temp_val.f*10;
sht_temp=TempCorrect(temp1);
humi1=humi_val.f*10-50;
sht_humi=HumiCorrect(humi1);
humi1=humi1-1;
}
}
資料借鑒于此紛傳
閱讀全文