1
0

WATHER.h 243 B

123456789101112131415161718192021
  1. #ifndef __WATER_H__
  2. #define __WATER_H__
  3. #include <stdint.h>
  4. #include "bmp280.h"
  5. #include "dht21.h"
  6. typedef enum
  7. {
  8. OFF = 0,
  9. ON
  10. } SwitchStatus;
  11. void BoardInit(void);
  12. void BeepStatusSet(SwitchStatus status);
  13. #endif