blob: 5163aa034c0f06ae61a94f9d3cec5751a36f88a5 (
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
|
//
// ABIController.h
// iHealthDemoCode
//
// Created by zhiwei jing on 14-11-18.
// Copyright (c) 2014年 zhiwei jing. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ABI.h"
/**
ABI controller class
*/
@interface ABIController : NSObject
/**
* Initialize ABI controller class
*/
+(ABIController *)shareABIController;
/**
* Get ABI instance,Access control class instance after receiving ABIConnectNoti/ArmConnectNoti, then use this instance to call ABI/ABI-Arm related communication methods.
* You can use hasLegMonitor property to distinguish whether connecting both arm&leg or only arm
*/
-(ABI *)currentInstance;
@end
|