22 lines
222 B
C
22 lines
222 B
C
![]() |
#ifndef __WATER_H__
|
||
|
#define __WATER_H__
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "bmp280.h"
|
||
|
#include "dht21.h"
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
OFF = 0,
|
||
|
ON
|
||
|
} SwitchStatus;
|
||
|
|
||
|
|
||
|
void BoardInit(void);
|
||
|
void BeepStatusSet(SwitchStatus status);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|