超声波测距模块学习
作者:互联网
int main(void)
{
float length;
delay_init(); //延时函数初始化
NVIC_Configuration(); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
uart_init(9600); //串口初始化为9600
Hcsr04Init();
printf("串口测试\n");
Hcsr04Init();
printf("超声波初始化成功!\n");
while(1)
{
length = Hcsr04GetLength();
printf("Length = %.3f cm\n",length);
delay_ms(50);
}
}
标签:初始化,串口,init,delay,length,模块,printf,超声波,测距 来源: https://www.cnblogs.com/zjq182/p/15880329.html