1234567891011121314151617181920212223242526272829303132 |
- #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 LedStatusSet(SwitchStatus status);
- #endif
|