summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h')
-rw-r--r--libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h
new file mode 100644
index 0000000..43fbe42
--- /dev/null
+++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP5.h
@@ -0,0 +1,32 @@
1//
2// BP5.h
3// testShareCommunication
4//
5// Created by my on 14/10/13.
6// Copyright (c) 2013年 my. All rights reserved.
7//
8
9#import "BP7.h"
10
11
12/**
13 BP5 device class
14 */
15@interface BP5 : BP7
16
17/**
18 * Establish measurement connection and start BP measurement(Only for BP5).
19 * @param blockZeroState Zeroing state
20 * @param pressure Pressure value in the process of measurement, the unit is ‘mmHg’.
21 * @param blockWaveletWithHeartbeat Wavelet data set with heart beat.
22 * @param blockWaveletWithoutHeartbeat Wavelet data set without heart beat.
23 * @param result result of the measurement, including systolic pressure, diastolic pressure, pulse rate and irregular judgment. Relevant key: time, sys, dia, heartRate, irregular. irregular will be 0 or 1.
24 * @param error Return error codes.
25 */
26
27-(void)commandStartMeasureWithZeroingState:(BlockZero)blockZeroState pressure:(BlockPressure)pressure waveletWithHeartbeat:(BlockWavelet)blockWaveletWithHeartbeat waveletWithoutHeartbeat:(BlockWavelet)blockWaveletWithoutHeartbeat result:(BlockMeasureResult)result errorBlock:(BlockError)error;
28
29
30
31
32@end