summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG3Controller.h
blob: 7d048e35c0a499370ebb30462b5ba67961ce7ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
//  BG3Controller.h
//  iHealthBG
//
//  Created by daiqingquan on 14-2-20.
//  Copyright (c) 2014年 andon. All rights reserved.
//

#import <Foundation/Foundation.h>
#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