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 --- .../Headers/ConnectDeviceController.h | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ConnectDeviceController.h (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ConnectDeviceController.h') diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ConnectDeviceController.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ConnectDeviceController.h new file mode 100644 index 0000000..d29e9cc --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/ConnectDeviceController.h @@ -0,0 +1,27 @@ +// +// ConnectDeviceController.h +// iHealthDemoCode +// +// Created by zhiwei jing on 1/24/16. +// Copyright © 2016 zhiwei jing. All rights reserved. +// + +#import +#import "HealthHeader.h" + +/** + ConnectDeviceController + */ +@interface ConnectDeviceController : NSObject + ++(ConnectDeviceController *)commandGetInstance; + + +/** + * Connect iHealth device with bluretooth low energy + * @param tempDeviceType iHealth DeviceType + * @param tempSerialNub iHealth device serialNub or deviceID, you can get it from [ScanDeviceController commandScanDeviceType]. + */ +-(int)commandContectDeviceWithDeviceType:(HealthDeviceType)tempDeviceType andSerialNub:(NSString *)tempSerialNub; + +@end -- cgit