123456789101112131415161718192021222324252627282930313233 |
- #ifndef __E53_SF1_H__
- #define __E53_SF1_H__
- typedef enum
- {
- OFF = 0,
- ON
- } SwitchStatus;
- void BoardInit(void);
- void MQ2PPMCalibration(void);
- int GetMQ2PPM(float *ppm);
- void BeepStatusSet(SwitchStatus status);
- void LedSafeStatusSet(SwitchStatus status);
- void LedWarnStatusSet(SwitchStatus status);
- #endif
|