30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) Fenda Technologies Co., Ltd. 2021. All rights reserved.
|
|
*
|
|
* Description: ble_body_temp_server.h
|
|
*
|
|
* Author: shey.tanxiaoyu
|
|
*
|
|
* Create: 2021-09-13
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef __BLE_BODY_TEMP_SERVER__H
|
|
#define __BLE_BODY_TEMP_SERVER__H
|
|
|
|
#include <stdint.h>
|
|
#include "ble_protocol.h"
|
|
|
|
enum {
|
|
GET_BODY_TEMP_MEASURE_FRAME_NUMBER_ID = 0x11, //5.23.11 获取体温历史帧数
|
|
GET_BODY_TEMP_MEASURE_FRAME_DETAIL_ID = 0x12, //5.23.12 获取体温历史详情数据
|
|
SET_BODY_TEMP_CONTINUE_MEASURE_SWITCH_ID = 0x13, //5.23.13 体温连续检测开关
|
|
SET_BODY_TEMP_UPPER_REMIND_ID = 0x14, //5.23.14 体温过高提醒
|
|
SET_BODY_TEMP_LOWER_REMIND_ID = 0x15, //5.23.15 体温过低提醒
|
|
BODY_TEMP_SERVER_MAX_ID,
|
|
};
|
|
|
|
extern const p_func_t body_temp_server_func[BODY_TEMP_SERVER_MAX_ID];
|
|
|
|
#endif
|
|
|