From d6d9a09d505d11148599a95a5be3e1351edbe0ac Mon Sep 17 00:00:00 2001 From: hc Date: Mon, 13 Apr 2026 15:17:52 +0800 Subject: Local iHealth SDK, device detail screen, iOS event fixes --- .../Communication_SDK/Headers/BP3.h | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP3.h (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP3.h') diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP3.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP3.h new file mode 100644 index 0000000..d7c7342 --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BP3.h @@ -0,0 +1,77 @@ +// +// BP3.h +// testShareCommunication +// +// Created by zhiwei jing on 13-10-22. +// Copyright (c) 2013年 my. All rights reserved. +// + +#import +#import "BPDevice.h" +#import + + +/** + BP3 device class + */ +@interface BP3 : BPDevice + +/** + * Query battery remaining energy + * @param energyValue A block to return the device battery remaining energy percentage, ‘80’ stands for 80%. + * @param error A block to return the error in ‘Establish measurement connection’. + */ +-(void)commandEnergy:(BlockEnergyValue)energyValue errorBlock:(BlockError)error; + +/** + * Establish measurement connection and start BP measurement + * @Notice By the first time of new user register via SDK, ‘iHealth disclaimer’ will pop up automatically, and require the user agrees to continue. SDK application requires Internet connection; there is 10-day tryout if SDK cannot connect Internet, SDK is fully functional during tryout period, but will be terminated without verification through Internet after 10 days. + * @param blockZeroState Zeroing state + * @param pressure Pressure value in the process of measurement, the unit is ‘mmHg’. + * @param blockWaveletWithHeartbeat Wavelet data set with heart beat. + * @param blockWaveletWithoutHeartbeat Wavelet data set without heart beat. + * @param result result of the measurement, including systolic pressure, diastolic pressure, pulse rate and irregular judgment. Relevant key: time, sys, dia, heartRate, irregular + * @param error error codes. + * Specification: + * 1. BPError0 = 0: Unable to take measurements due to arm/wrist movements. + * 2. BPError1: Failed to detect systolic pressure. + * 3. BPError2: Failed to detect diastolic pressure. + * 4. BPError3: Pneumatic system blocked or cuff is too tight during inflation. + * 5. BPError4: Pneumatic system leakage or cuff is too loose during inflation. + * 6. BPError5: Cuff pressure reached over 300mmHg. + * 7. BPError6: Cuff pressure reached over 15 mmHg for more than 160 seconds. + * 8. BPError7: Data retrieving error. + * 9. BPError8: Data retrieving error. + * 10. BPError9: Data retrieving error. + * 11. BPError10: Data retrieving error. + * 12. BPError11: Communication Error. + * 13. BPError12: Communication Error. + * 14. BPError13: Low battery. + * 15. BPError14: Device bluetooth set failed. + * 16. BPError15: Systolic exceeds 260mmHg or diastolic exceeds 199mmHg. + * 17. BPError16: Systolic below 60mmHg or diastolic below 40mmHg. + * 18. BPError17: Arm/wrist movement beyond range. + * 19. BPNormalError=30: device error, error message displayed automatically. + * 20. BPOverTimeError: Abnormal communication. + * 21. BPNoRespondError: Abnormal communication. + * 22. BPBeyondRangeError: device is out of communication range. + * 23. BPDidDisconnect: device is disconnected. + * 24. BPAskToStopMeasure: measurement has been stopped. + * 25. BPInputParameterError=400: Parameter input error. + */ +-(void)commandStartMeasureWithZeroingState:(BlockZero)blockZeroState pressure:(BlockPressure)pressure waveletWithHeartbeat:(BlockWavelet)blockWaveletWithHeartbeat waveletWithoutHeartbeat:(BlockWavelet)blockWaveletWithoutHeartbeat result:(BlockMeasureResult)result errorBlock:(BlockError)error; + +/** + * Measurement termination and stop upper-arm BPM measurement + * @param result The block return ‘YES’ means measurement has been terminated, return ‘NO’ means termination failed. + * @param error A block to return the error in ‘Establish measurement connection' in BP3. + */ +-(void)stopBPMeassure:(BlockResult)result ErrorBlock:(BlockError)error; +/** + * Disconnect BP3 and delete the measurement port + */ +-(void)deleteMeasurePort; + + + +@end -- cgit