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/BG3Controller.h | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h (limited to 'libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h') diff --git a/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h new file mode 100644 index 0000000..7d048e3 --- /dev/null +++ b/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h @@ -0,0 +1,28 @@ +// +// BG3Controller.h +// iHealthBG +// +// Created by daiqingquan on 14-2-20. +// Copyright (c) 2014年 andon. All rights reserved. +// + +#import +#import "BG3.h" + +/** + BG3Controller + */ +@interface BG3Controller : NSObject + +/** + *Initialization for BG3 (wireless BG via Bluetooth) + */ ++(BG3Controller *)shareIHBg3Controller; + +/** + * Get all BG3 Instance + * The methold needs to be called when the BG3 has been triggered. When the app detected the glucose meter, the notification with the name of DeviceAuthenSuccess will be sent. After the device disconnected, the notification with the name of DeviceAuthenSuccess will be received. + */ +-(BG3 *)getCurrentBG3Instace; + +@end -- cgit