bossay_release_out/app/A07_WATHER/include/WATHER.h
2025-09-24 11:16:14 +08:00

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