summaryrefslogtreecommitdiff
path: root/libs/ihealth-sdk/ios/ReactNativeIOSLibrary/Communication_SDK/Headers/BG5Controller.h
blob: 32f89356513d9a28d5cbb533b5f295105eeec1a7 (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
//
//  BG5Controller.h
//  testShareCommunication
//
//  Created by daiqingquan on 14-1-16.
//  Copyright (c) 2014年 my. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "BGMacroFile.h"

/**
 BG5Controller
 */
@interface BG5Controller : BGController

/**
 *Initialization for BG5 (wireless BG via Bluetooth)
 */
+(BG5Controller *)shareIHBg5Controller;

/**
 * Get all BG5 Instance
 * The methold needs to be called when the BG5 has been triggered. When the app detected the glucose meter, the notification with the name of BG5ConnectNoti will be sent. After the device disconnected, the notification with the name of  BG5DisConnectNoti will be received.
 */
-(NSArray *)getAllCurrentBG5Instace;

@end