18 lines
200 B
C
18 lines
200 B
C
#ifndef __BUZZER_H
|
|
#define __BUZZER_H
|
|
|
|
#include "main.h"
|
|
#include "stdlib.h"
|
|
|
|
void buzzer_tick(void);
|
|
void buzzer_on(uint16_t time);
|
|
void buzzer_init(void);
|
|
void buzzer_deinit(void);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|