blob: 30c8069f138d2064bf0356c02601d374744fcc84 (
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
|
//
// ABPMController.h
// iHealthSDKStatic
//
// Created by Realank on 2017/9/26.
// Copyright © 2017年 ihealthSDK. All rights reserved.
//
#import "BPController.h"
/**
BP5C controller class
*/
@interface BP5CController : BPController
/**
* Initialize BP5C controller class
*/
+ (BP5CController *)sharedController;
/**
* Get all BP5C instance,Access control class instance after receiving BP3LConnectNoti then use instance to call BP5C related communication methods.
*/
- (NSArray *)allConnectedInstance;
@end
|