Car/Peripheral/Inc/buzzer.h
2024-07-18 11:38:07 +08:00

14 lines
226 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 __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