diff options
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h')
| -rwxr-xr-x | libs/ihealth-sdk/ios/ReactNativeIOSLibrary/BTMProfileModule.h | 50 |
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 | ||
