1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef __E53_SC1_H__
- #define __E53_SC1_H__
- #include <stdint.h>
- #define BH1750_ADDR 0x23
- typedef enum
- {
- OFF = 0,
- ON
- } SwitchStatus;
- int BoardInit(void);
- int E53SC1ReadData(float *data);
- void LightStatusSet(SwitchStatus status);
- #endif
|