Car/Peripheral/Inc/buzzer.h

14 lines
226 B
C
Raw Normal View History

2024-07-18 11:29:28 +08:00
#ifndef __BUZZER_H
#define __BUZZER_H
#include "main.h"
void BUZZER_Start();
void BUZZER_Stop();
/// @brief 蜂鸣器定时鸣叫
/// @param time 鸣叫时间单位100毫秒
void BUZZER_StartTimed(uint8_t time);
#endif