From d6d9a09d505d11148599a95a5be3e1351edbe0ac Mon Sep 17 00:00:00 2001 From: hc Date: Mon, 13 Apr 2026 15:17:52 +0800 Subject: Local iHealth SDK, device detail screen, iOS event fixes --- .../ios/ReactNativeIOSLibrary/BTMProfileModule.h | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100755 libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h') diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h new file mode 100755 index 0000000..e19f1a9 --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h @@ -0,0 +1,50 @@ +// +// BTMProfileModule.h +// ReactNativeIOSLibrary +// +// Created by daiqingquan on 2016/12/4. +// Copyright © 2016年 daiqingquan. All rights reserved. +// + +#import +#if __has_include() +#import +#else +#import "RCTBridgeModule.h" +#endif +@interface BTMProfileModule : NSObject + + + +#define BTMACTION @"event_notify_btm" +#define BTM_ACTION @"action" + +#define BTM_BATTERY @"battery" + +#define BTM_ACTION_BATTERY @"battery_btm" + +#define BTM_ACTION_MEMORY @"memory_btm" + +#define BTM_ACTION_MEASURE @"measure_btm" + +#define BTM_ACTION_CALLBACK @"btm_callback" + +#define BTM_ACTION_ERROR @"action_error_btm" + +#define BTM_MEMORY_COUNT @"memory_count" + +#define BTM_TEMPERATURE_ARRAY @"btm_temperature_array" + +#define BTM_TEMPERATURE_TARGET @"btm_temperature_target" + +#define BTM_TEMPERATURE @"btm_temperature" + +#define BTM_MEASURE_TIME @"measure_time" + +#define BTM_ERROR_DESCRIPTION @"description" + +#define BTM_ERROR_NUM @"error_num" + +#define BTM_DEVICE @"devices" + +@end -- cgit