光敏电阻控制蜂鸣器

This commit is contained in:
2026-08-11 23:41:24 +08:00
parent beea93edb8
commit ded38a7c44
6 changed files with 77 additions and 15 deletions

12
BSP/Buzzer.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef __BUZZER_H
#define __BUZZER_H
void Buzzer_Init(void);
void Buzzer_ON(void);
void Buzzer_OFF(void);
void Buzzer_TOGGLE(void);
#endif