24 lines
285 B
C
24 lines
285 B
C
![]() |
#ifndef __FLAME_H__
|
||
|
#define __FLAME_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
OFF = 0,
|
||
|
ON
|
||
|
} SwitchStatus;
|
||
|
|
||
|
|
||
|
void BoardInit(void);
|
||
|
float GetVoltage(void);
|
||
|
uint8_t NoiseReadData(void);
|
||
|
// void BeepStatusSet(SwitchStatus status);
|
||
|
void LedWarnStatusSet(SwitchStatus status);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|