25 lines
362 B
C
25 lines
362 B
C
![]() |
#ifndef __VOICE_H__
|
||
|
#define __VOICE_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
OFF = 0,
|
||
|
ON
|
||
|
} SwitchStatus;
|
||
|
|
||
|
void BoardInit(void);
|
||
|
|
||
|
void BeepStatusSet(SwitchStatus status);
|
||
|
void LedBlue1StatusSet(SwitchStatus status);
|
||
|
void LedBlue2StatusSet(SwitchStatus status);
|
||
|
void LedRed1StatusSet(SwitchStatus status);
|
||
|
void LedRed2StatusSet(SwitchStatus status);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|