单片机中如何将DS18b20 测得的温度通过串口发送到上位机VB中
单片机中如何将DS18b20 测得的温度通过串口发送到上位机VB中
日期:2017-12-16 19:28:56 人气:1
/////基于51单片机
#include
#include
unsigned char tint;
unsigned char tflo;
//简单延时函数
void delay(unsigned int n)
{
unsigned char x;
while (n--)
{
x = 30;
while (x--);
}
}
/