summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/module/BG1SProfileModule.js
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ihealth-sdk/module/BG1SProfileModule.js')
-rw-r--r--libs/ihealth-sdk/module/BG1SProfileModule.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/module/BG1SProfileModule.js b/libs/ihealth-sdk/module/BG1SProfileModule.js
new file mode 100644
index 0000000..c950330
--- /dev/null
+++ b/libs/ihealth-sdk/module/BG1SProfileModule.js
@@ -0,0 +1,30 @@
1'use strict';
2
3var { NativeModules } = require('react-native');
4
5var RCTModule = NativeModules.BG1SProfileModule
6
7/**
8 * @module BG1SProfileModule
9 */
10module.exports = {
11 ACTION_GET_DEVICE_INFO: RCTModule.ACTION_GET_DEVICE_INFO,
12 INFO_BATTERY_BG1S: RCTModule.INFO_BATTERY_BG1S,
13 INFO_VERSION_CODE_BLOOD_BG1S: RCTModule.INFO_VERSION_CODE_BLOOD_BG1S,
14 INFO_VERSION_CODE_CTL_BG1S: RCTModule.INFO_VERSION_CODE_CTL_BG1S,
15
16 ACTION_STRIP_INSERTION_STATUS: RCTModule.ACTION_STRIP_INSERTION_STATUS,
17 ACTION_GET_BLOOD: RCTModule.ACTION_GET_BLOOD,
18
19 ACTION_SET_MEASURE_MODE: RCTModule.ACTION_SET_MEASURE_MODE,
20
21 ACTION_MEASURE_RESULT: RCTModule.ACTION_SET_MEASURE_MODE,
22 MEASURE_MODE: RCTModule.MEASURE_MODE,
23 MEASURE_RESULT: RCTModule.MEASURE_RESULT,
24
25 ACTION_ERROR_BG1S: RCTModule.ACTION_ERROR_BG1S,
26 ERROR_NUM_BG1S: RCTModule.ERROR_NUM_BG1S,
27 ERROR_DESCRIPTION_BG1S: RCTModule.ERROR_DESCRIPTION_BG1S,
28
29 ACTION_GET_ALL_CONNECTED_DEVICES: RCTModule.ACTION_GET_ALL_CONNECTED_DEVICES
30}