//pulswith approx. 3 us
SCK=0;
}
if(ack==1)DATA=0; //in case of "ack==1" pull down DATA-Line
else DATA=1; //如果是校验(ack==0),读取完后结束通讯
_nop_();_nop_();_nop_(); //pulswith approx. 3 us
SCK=1; //clk #9 for ack
_nop_();_nop_();_nop_(); //pulswith approx. 3 us
SCK=0;
_nop_();_nop_();_nop_(); //pulswith approx. 3 us
DATA=1; //release DATA-line
return val;
}
/*--------------------------------------
;模块名称:s_measure();
;功 能:测量温湿度函数
;-------------------------------------*/
char s_measure(unsigned char *p_value, unsigned char *p_checksum, unsigned char mode)
// makes a measurement (humidity/temperature) with checksum
{
unsigned error=0;
unsigned int i;
s_transstart(); //transmission start
switch(mode){ //send command to sensor
case TEMP : error+=s_write_byte(MEASURE_TEMP); break;
case HUMI : error+=s_write_byte(MEASURE_HUMI); break;
default : break;
}
for (i=0;i<65535;i++) if(DATA==0) break; //wait until sensor has finished the measurement
if(DATA) error+=1; // or timeout (~2 sec.) is reached
*(p_value) =s_read_byte(ACK); //read the first byte (MSB)
*(p_value+1)=s_read_byte(ACK); //read the second byte (LSB)
*p_checksum =s_read_byte(noACK); //read checksum
return error;
}
/*--------------------------------------
;模块名称:calc_dht90();
;功 能:温湿度补偿函数
;-------------------------------------*/
void calc_dht90(float *p_humidity ,float *p_temperature)
// calculates temperature [C] and humidity [%RH]
// input : humi [Ticks] (12 bit)
// temp [Ticks] (14 bit)
// output: humi [%RH]
// temp [C]
{ const float C1=-4.0; // for 12 Bit
const float C2=+0.0405; // for 12 Bit
const float C3=-0.0000028; // for 12 Bit
const float T1=+0.01; // for 14 Bit @ 5V
const float T2=+0.00008; // for 14 Bit @ 5V
float rh=*p_humidity; // rh: Humidity [Ticks] 12 Bit
float t=*p_temperature; // t: Temperature [Ticks] 14 Bit
float rh_lin; // rh_lin: Humidity linear
float rh_true; // rh_true: Temperature compensated humidity
float t_C; // t_C : Temperature [C]
t_C=t*0.01 - 40; //calc. temperature from ticks to [C]
rh_lin=C3*rh*rh + C2*rh + C1; //calc. humidity from ticks to [%RH]
rh_true=(t_C-25)*(T1+T2*rh)+rh_lin; //calc. temperature compensated humidity [%RH]
if(rh_true>100)rh_true=100; //cut if the value is outside of
if(rh_true<0.1)rh_true=0.1; //the physical possible range
*p_temperature=t_C; //return temperature [C]
*p_humidity=rh_true; //return humidity[%RH]
}
//*********************第二部分DHT90设置 END****************************************
//*********主函数*****************
void main(void)
{
value humi_val,temp_val;
unsigned char error,checksum;
unsigned int wendu,shidu;
LCD_init();
s_connectionreset();
LCD_disp_str(0,1,"TE");
LCD_disp_str(0,2,"RH");
//*********初始化温度显示区*********
LCD_disp_str(2,1,"TTT.TC");
//*********初始化湿度显示区*********
LCD_disp_str(2,2,"RRR.R%");
delay_n10us(20000); //延时0.2s
while(1)
{ error=0;
error+=s_measure((unsigned char*) &humi_val.i,&checksum,HUMI); //measure humidity
error+=s_measure((unsigned char*) &temp_val.i,&checksum,TEMP); //measure temperature
if(error!=0) s_connectionreset(); //in case of an error: connection reset
else
{ humi_val.f=(float)humi_val.i; //converts integer to float
temp_val.f=(float)temp_val.i; //converts integer to float
calc_dht90(&humi_val.f,&temp_val.f); //calculate humidity, temperature
wendu=10*temp_val.f;
LCD_disp_char(2,1,wendu/1000+'0'); //显示温度百位
LCD_disp_char(3,1,(wendu%1000)/100+'0'); //显示温度十位
LCD_disp_char(4,1,(wendu%100)/10+'0'); //显示温度个位
LCD_disp_char(6,1,(wendu%10)+'0'); //显示温度小数点后第一位
shidu=10*humi_val.f;
LCD_disp_char(2,2,shidu/1000+'0'); //显示湿度百位
LCD_disp_char(3,2,(shidu%1000)/100+'0'); //显示湿度十位
LCD_disp_char(4,2,(shidu%100)/10+'0'); //显示湿度个位
LCD_disp_char(6,2,(shidu%10)+'0'); //显示湿度小数点后第一位
}
//----------wait approx. 0.8s to avoid heating up SHTxx------------------------------
delay_n10us(80000); //延时约0.8s
}
} |