summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h
diff options
context:
space:
mode:
authorhc <haocheng.xie@respiree.com>2026-04-13 15:17:52 +0800
committerhc <haocheng.xie@respiree.com>2026-04-13 15:17:52 +0800
commitd6d9a09d505d11148599a95a5be3e1351edbe0ac (patch)
treea5f5891983d1ff207e99f683a5e151519cef4980 /libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h
parente4fb9966e762852bf17f21c8406501d42fae0b61 (diff)
Local iHealth SDK, device detail screen, iOS event fixes
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h')
-rwxr-xr-xlibs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h50
1 files changed, 50 insertions, 0 deletions
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 @@
1//
2// BTMProfileModule.h
3// ReactNativeIOSLibrary
4//
5// Created by daiqingquan on 2016/12/4.
6// Copyright © 2016年 daiqingquan. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#if __has_include(<React/RCTAssert.h>)
11#import <React/RCTBridgeModule.h>
12#else
13#import "RCTBridgeModule.h"
14#endif
15@interface BTMProfileModule : NSObject<RCTBridgeModule>
16
17
18
19#define BTMACTION @"event_notify_btm"
20#define BTM_ACTION @"action"
21
22#define BTM_BATTERY @"battery"
23
24#define BTM_ACTION_BATTERY @"battery_btm"
25
26#define BTM_ACTION_MEMORY @"memory_btm"
27
28#define BTM_ACTION_MEASURE @"measure_btm"
29
30#define BTM_ACTION_CALLBACK @"btm_callback"
31
32#define BTM_ACTION_ERROR @"action_error_btm"
33
34#define BTM_MEMORY_COUNT @"memory_count"
35
36#define BTM_TEMPERATURE_ARRAY @"btm_temperature_array"
37
38#define BTM_TEMPERATURE_TARGET @"btm_temperature_target"
39
40#define BTM_TEMPERATURE @"btm_temperature"
41
42#define BTM_MEASURE_TIME @"measure_time"
43
44#define BTM_ERROR_DESCRIPTION @"description"
45
46#define BTM_ERROR_NUM @"error_num"
47
48#define BTM_DEVICE @"devices"
49
50@end