本文包含原理图、PCB、源代码、封装库、中英文PDF等资源
您需要 登录 才可以下载或查看,没有账号?注册会员
×
#include"Config.h"
void main()
{
uint final_temp=0;
uint Temp_Data[]={0xb1fe,0x0ffff,0,0,0,0,0,0};
uchar temp_high[]={0x00,0x00,0x00,0x00,0x80,0x80,0x80,0x80};
uchar temp_low[]={0xc0,0xc0,0x80,0x80,0x80,0x80,0x80,0x80};
uchar i;
Init_MAX7221();
//display();
temp_convert();
delay_long(500);
while(1)
{
temp_convert();
delay_long(10);
final_temp=read_ds18b20(temp_low,temp_high);
Data_Process(Temp_Data,temp_low,temp_high);
for(i=0;i<8;i++)
{
adj_dat(Temp_Data,i);
//delay_long(5);
display();
delay_long(400);//delay(5)就是延时555us
}
}
}
不要理会7221初始化化程序 |