超声波检测原理
超声波测距的程序流程图
程序如下:
//超声波模块程序
//超声波模块程序
//Trig = P2^0
//Echo = P3^2
#include
#define uchar unsigned char
#define uint unsigned int
//
void delay(uint z)
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}
//
void delay_20us()
{
uchar a ;
for(a=0;a
}
//***************************************************************
//显示数据转换程序
void display(uint temp)
{<