Car/Core/Inc/hcsr04.h
2024-07-13 15:22:46 +08:00

16 lines
381 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __HCSR04_H
#define __HCSR04_H
#include "main.h"
extern uint32_t sonor_distance; // 测量出的距离单位mm
extern uint8_t sonor_state; // 测距状态变量0未测量1正在测量2已测量
void HC_SR04_Init(void);
uint32_t sonar_mm(void);
// 测距完毕回调执行完自定义任务后将sonor_state置0
void Sonar_CP_Callback();
#endif