19 lines
318 B
C
19 lines
318 B
C
![]() |
#ifndef BELON_CONFIG_H_
|
||
|
#define BELON_CONFIG_H_
|
||
|
|
||
|
#include "stdint.h"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
uint8_t bind_mac[6];
|
||
|
uint8_t audio_enable;
|
||
|
uint8_t audio_volume;
|
||
|
uint8_t detect_interval;
|
||
|
uint32_t tempreature_limit_low;
|
||
|
uint32_t tempreature_limit_high;
|
||
|
uint8_t resave[32];
|
||
|
} app_dev_config_t;
|
||
|
|
||
|
#endif // BELON_CONFIG_H_
|
||
|
|