1234567891011121314151617181920212223 |
- #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 LedWarnStatusSet(SwitchStatus status);
- #endif
|