找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1482|回复: 2
收起左侧

基于51单片机的温度测量 程序要怎么改才能实现控传感器制多个MLX90614

[复制链接]
ID:553625 发表于 2020-3-26 23:42 | 显示全部楼层 |阅读模式
#include"reg52.h"
#include"intrins.h"
#define  uint  unsigned int
#define  uchar unsigned char
#define  Nack_counter  10
uchar flag1;
sbit  RS=P2^4;
sbit  RW=P2^5;
sbit  LCDE=P2^6;
//mlx90614
sbit  SCL=P1^6;
sbit  SDA=P1^7;
bdata uchar flag;
sbit bit_out=flag^7;
sbit bit_in=flag^0;
uchar DataH,DataL,Pecreg;
void   start_bit();                 
//MLX90614
void   stop_bit();
uchar  rx_byte(void);            
void   send_bit(void);            
void   tx_byte(uchar dat_byte);     
void   receive_bit(void);           
void   delay(uint N);            
uint   memread(void);            
void   init1602(void);      
void   chk_busy_flg(void);        
void   dis_cmd_wrt(uchar cmd);   
void   dis_dat_wrt(uchar dat);      
void   display(uint Tem);         
void main()
{
uint Tem;  //????
SCL=1;
SDA=1;
_nop_();  _nop_();_nop_();_nop_();
SCL=0;
delay(1000);
SCL=1;  
init1602();
while(1)  
{   
Tem=memread();  
display(Tem);   
delay(20);
}
}
void display(uint Tem)
{
uint T,a,b;  T=Tem*2;
dis_cmd_wrt(0x01);
if(T>=27315)
{   
T=T-27315;   
a=T/100;  
b=T-a*100;
if(a>=100)   
{   
dis_dat_wrt(0x30+a/100);   
a=a%100;     
dis_dat_wrt(0x30+a/10);  
a=a%10;   
dis_dat_wrt(0x30+a);  
}   
else if(a>=10)  
{     
dis_dat_wrt(0x30+a/10);   
a=a%10;   
dis_dat_wrt(0x30+a);   
}   
else   
{   
dis_dat_wrt(0x30+a);   
}   
dis_dat_wrt(0x2e);
if(b>=10)  
{   
dis_dat_wrt(0x30+b/10);  
b=b%10;   
dis_dat_wrt(0x30+b);
}  
else   
{   
dis_dat_wrt(0x30);  
dis_dat_wrt(0x30+b);  
}  
}
else
{  
T=27315-T;
a=T/100;
b=T-a*100;  
dis_dat_wrt(0x2d);   
if(a>=10)  
{   
dis_dat_wrt(0x30+a/10);   
a=a%10;   
dis_dat_wrt(0x30+a);
}  
else  
{
dis_dat_wrt(0x30+a);  
}  
dis_dat_wrt(0x2e);
if(b>=10)   
{   
dis_dat_wrt(0x30+b/10);   
b=b%10;   
dis_dat_wrt(0x30+b);
}  
else  
{   
dis_dat_wrt(0x30);
dis_dat_wrt(0x30+b);
}
}
}
void   start_bit(void)
{   
SDA=1;   
_nop_();_nop_();_nop_();_nop_();_nop_();   
SCL=1;   
_nop_();_nop_();_nop_();_nop_();_nop_();
SDA=0;  
_nop_();_nop_();_nop_();_nop_();_nop_();  
SCL=0;    _nop_();_nop_();_nop_();_nop_();_nop_();

}
void   stop_bit(void)
{
SCL=0;   
_nop_();_nop_();_nop_();_nop_();_nop_();  
SDA=0;   
_nop_();_nop_();_nop_();_nop_();_nop_();   
SCL=1;   
_nop_();_nop_();_nop_();_nop_();_nop_();
SDA=1;
}
void  tx_byte(uchar dat_byte)
{   
char i,n,dat;   
n=Nack_counter;
TX_again:  
dat=dat_byte;  
for(i=0;i<8;i++)   
{     
if(dat&0x80)   
bit_out=1;     
else     
bit_out=0;  
send_bit();   
dat=dat<<1;  
}
receive_bit();  
if(bit_in==1)  
{   
stop_bit();   
if(n!=0)   
{n--;goto Repeat;}
else      goto exit;   
}   
else     goto exit; Repeat:     start_bit();   
goto TX_again; exit: ;
}
void  send_bit(void)
{  
if(bit_out==0)
SDA=0;  
else     
SDA=1;  
_nop_();   
SCL=1;  
_nop_();_nop_();_nop_();_nop_();
_nop_();_nop_();_nop_();_nop_();  
SCL=0;
_nop_();_nop_();_nop_();_nop_();
_nop_();_nop_();_nop_();_nop_(); }
uchar rx_byte(void)
{   
uchar i,dat;  
dat=0;   
for(i=0;i<8;i++)
{   
dat=dat<<1;
receive_bit();
if(bit_in==1)      dat=dat+1;  
}  
send_bit();   return dat;
}
void receive_bit(void)
{  
SDA=1;
bit_in=1;  
SCL=1;  
_nop_();_nop_();_nop_();_nop_();
_nop_();_nop_();_nop_();_nop_();  
bit_in=SDA;
_nop_();  
SCL=0;  
_nop_();_nop_();_nop_();_nop_();  
_nop_();_nop_();_nop_();_nop_(); }
void   delay(uint N)
{   
uint i;  
for(i=0;i<N;i++)
_nop_();
}
uint memread(void)
{   start_bit();
tx_byte(0x00); //Send SlaveAddress  
tx_byte(0x07);  //Send Command   
start_bit();
tx_byte(0x01);
bit_out=0;   
DataL=rx_byte();   
bit_out=0;  
DataH=rx_byte();
bit_out=1;  
Pecreg=rx_byte();  
stop_bit();  
return(DataH*256+DataL);
}
void init1602(void)      //
{   
dis_cmd_wrt(0x01);  
dis_cmd_wrt(0x0c);   
dis_cmd_wrt(0x06);  
dis_cmd_wrt(0x38);
}
void chk_busy_flg(void)
{  
flag1=0x80;  
while(flag1&0x80)  
{   
P0=0xff;
RS=0;   
RW=1;
LCDE=1;  
flag1=P0;  
LCDE=0;  
}
}
void dis_cmd_wrt(uchar cmd)  
{   
chk_busy_flg();  
P0=cmd;  
RS=0;   
RW=0;  
LCDE=1;  
LCDE=0;
}
void dis_dat_wrt(uchar dat)
{   
chk_busy_flg();   
if(flag1==16)   
{   
P0=0XC0;   
RS=0;   
RW=0;  
LCDE=1;
LCDE=0;
}   
P0=dat;
RS=1;   
RW=0;   
LCDE=1;
LCDE=0;
}

回复

使用道具 举报

ID:553625 发表于 2020-3-26 23:53 | 显示全部楼层
大家不用帮忙改 留下思路就好 谢谢大家了
回复

使用道具 举报

ID:808655 发表于 2020-9-5 11:54 | 显示全部楼层
又是零注释,谁会想看零注释的程序啊
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表