summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.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/PT3SBTProfileModule.h
parente4fb9966e762852bf17f21c8406501d42fae0b61 (diff)
Local iHealth SDK, device detail screen, iOS event fixes
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.h')
-rwxr-xr-xlibs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.h
new file mode 100755
index 0000000..e396c26
--- /dev/null
+++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/PT3SBTProfileModule.h
@@ -0,0 +1,52 @@
1//
2// POProfileModule.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 PT3SBTProfileModule : NSObject<RCTBridgeModule>
16
17
18#define kACTION_SET_TIME @"ACTION_SET_TIME"
19
20#define kACTION_GET_BATTERY @"ACTION_GET_BATTERY"
21
22#define kACTION_SET_UNIT @"ACTION_SET_UNIT"
23
24#define kACTION_GET_UNIT @"ACTION_GET_UNIT"
25
26#define kACTION_GET_HISTORY_COUNT @"ACTION_GET_HISTORY_COUNT"
27
28#define kACTION_GET_HISTORY_DATA @"ACTION_GET_HISTORY_DATA"
29
30#define kACTION_DELETE_HISTORY_DATA @"ACTION_DELETE_HISTORY_DATA"
31
32#define kACTION_TEMPERATURE_MEASUREMENT @"ACTION_TEMPERATURE_MEASUREMENT"
33
34#define kACTION_PUB_UNIT @"ACTION_PUB_UNIT"
35
36#define kACTION_GET_ALL_CONNECTED_DEVICES @"ACTION_GET_ALL_CONNECTED_DEVICES"
37
38#define STATUS @"STATUS"
39
40#define BATTERY @"BATTERY"
41
42#define UNIT @"UNIT"
43
44#define TS @"TS"
45
46#define COUNT @"COUNT"
47
48#define TEMPERATURE @"TEMPERATURE"
49
50#define HISTORY @"HISTORY"
51
52@end