TMP101 I2C温度传感器的C51实现
扫描二维码
随时随地手机看文章
前段时间 STM32 的I2C应用搞的一塌糊涂,自我感觉十分不爽。又找出了一片 德州仪器 的12位 I2C 接口的温度传感器 TMP101来 练练手。先在SMT32接线时连电源都接错了,上拉也没接。算了先在51 上跑跑,不久一定要在STM32跑起来。
#include
#include
#define OP_WRITE 0x92// 器件地址以及写入操作 浮空了地址引脚
#define OP_READ 0x93// 器件地址以及读取操作
sbit SDA=P1^2;//定义总线连接端口
sbit SCL=P1^1;
sbit WP=P1^0;//No connect here 一个标记
float tmp;char a[6]; char num;
unsigned char Number[4]={0xf9,0xb0,0x92,0x80};// 温度码值
unsigned char const dofly[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0xc6};// 显示段码值0123456789C
unsigned char code seg[]={0x7f,0xbf,0xdf,0xef,0xf7,0xfb,0xfd,0xfe};//分别对应相应的数码管点亮
void mDelay(unsigned int j)//A normal delay
{
unsigned int i;
for(;j>0;j--)
{
for(i=0;i<125;i++);
}
}
/**********************************************************
延时子程序 (4.34us)
**********************************************************/
void delayNOP(void)
{
_nop_();
_nop_();
_nop_();
_nop_();
}
/**********************************************************
延时子程序
**********************************************************/
void delayms(unsigned int ms)
{
unsigned char k;
while (ms--)
{
for (k = 0; k < 114; k++)
;
}
}
/**********************************************************
启动子程序
在 SCL 高电平期间 SDA 发生负跳变
**********************************************************/
void iic_start()
{
SDA = 1;
SCL = 1;
delayNOP();
SDA = 0;
delayNOP();
SCL = 0;
}
/**********************************************************
停止子函数
在 SCL 高电平期间 SDA 发生正跳变
**********************************************************/
void iic_stop()
{
SDA = 0;
SCL = 1;
delayNOP();
SDA = 1;
delayNOP();
SCL = 0;
}
/**********************************************************
发送应答位子函数
在 SDA 低电平期间 SCL 发生一个正脉冲
**********************************************************/
void iic_ack()
{
SDA = 0;
SCL = 1;
delayNOP();
SCL = 0;
SDA = 1;
}
/**********************************************************
发送非应答位子函数
在 SDA 高电平期间 SCL 发生一个正脉冲
**********************************************************/
/*void iic_noack()
{
SDA = 1;
SCL = 1;
delayNOP();
SCL = 0;
SDA = 0;
}*/
/**********************************************************
应答位检测子函数 这里没用
**********************************************************/
/*bit iic_testack()
{
bit ack_bit;
SDA = 1; //置SDA为输入方式
SCL = 1;
delayNOP();
ack_bit = SDA;
SCL = 0;
delayNOP();
return ack_bit; //返回TMP101应答位
}*/
/**********************************************************
读一个字节子程序
从TMP101读数据到MCU
**********************************************************/
unsigned char readbyte()
{
unsigned char i, read_data;
SDA = 1;//置SDA为输入方式
for (i = 0; i < 8; i++)
{
SCL = 1;//使SDA数据有效
read_data <<= 1;//调整接收位
if (SDA)
//读SDA
read_data++;
SCL = 0;//继续接收数据
}
return (read_data);
}
/**********************************************************
发送一个字节子程序
从MCU移出数据到TMP101
**********************************************************/
void writebyte(unsigned char write_data)
{
unsigned char i;
for (i = 0; i < 8; i++)
// 循环移入8个位
{
SDA = (bit)(write_data &0x80);//将发送位送入SDA数据线
SCL = 1;
delayNOP();
SCL = 0;//SDA数据线上数据变化
write_data <<= 1;//调整发送位
}
}
/**********************************************************
init TMP101
**********************************************************/
void init()
{
iic_start();
writebyte(OP_WRITE);//写0x92 SLAVE ADDRESS
iic_ack();
//while(iic_testack());
writebyte(0x01);//写配置命令Pointer Register Type
iic_ack();
//while(iic_testack());
writebyte(0xfe);//写数据 Configuration Register
iic_ack();
//while(iic_testack());
delayms(1);
iic_stop();//发送结束
}
/**********************************************************
读出12位温度
**********************************************************/
void RdFromROM()
{
iic_start();
writebyte(OP_WRITE);//写0x92
iic_ack();
//while(iic_testack());
writebyte(0x00);//写读取地址
iic_ack();
//while(iic_testack());
iic_start();
writebyte(OP_READ);//写0x93
iic_ack();
Number[0] = readbyte();//读出数据写
iic_ack();//发送应答位
delayms(1);
Number[1] = readbyte();//读出数据
iic_ack();//发送应答位 按理应该发送 非应答的 但是TMP101 的时序图是应答
delayms(1);
//iic_noack(); //发送非应答位 非应答也能调通的
iic_stop();//发送结束
}
void maketemp()//处理温度
{
long int temp=0;
temp=Number[0];
temp<<=4;
temp=temp|((Number[1]&0xf0)>>4);
tmp=(temp/16.0);
a[0]=(char)tmp/10;
a[1]=(char)tmp%10;
a[2]=(char)((int)(tmp*10)%10);
a[3]=(char)((int)(tmp*100)%10);
a[4]=(char)((int)(tmp*1000)%10);
a[5]=10;
}
void main()
{
unsigned char i=0;
WP=1;
TMOD=0x01;//定时器设置
TH0=0x4c;
TL0=0x00;
IE=0x82;
TR0=1;
init();//初始化
mDelay(400);
RdFromROM();//读温度
maketemp();//转换
WP=0;
while(1)
{
for (i=0;i<=5;i++)//数码管公阳扫描
{
P2=seg[i];P0=dofly[a[i]];mDelay(2);
P2=0xbf;P0=0X7F;mDelay(1);//小数点
}
}
}
void tim(void) interrupt 1 using 1//中断,用于温度检测间隔
{
IE=0x00;//关中断
num++;
if (num==5)
{
num=0;//12位的温度转换典型时间为320ms 这个中断为50ms 11.0592MHz
RdFromROM();//读温度
maketemp();//转换
}
TH0=0x4c;//定时器重装值
TL0=0x00;
IE=0x82;//开中断
}