Blood pressure calibration control
Function table: setSupportV3Bp
Parameter description:
Field name | Field type | Field description |
---|---|---|
operate | int | 0: Invalid 1: Start setting blood pressure calibration 2: Stop setting blood pressure calibration 3: Get characteristic vector information |
filePath | String | File path to save the raw data of firmware blood pressure calibration after getting it The path contains the file name (../../blood.txt) Valid when operate=1 |
Example
Swift
Cmds.setBpCalControlV3().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOBpCalControlModel
}else {
// Failed
}
}
Kotlin
Cmds.setBpCalControlV3().send {
if (it.error.code == 0) {
// Success
// it.res is IDOBpCalControlModel
}else {
// Failed
}
}