blob: 17acd645c2e6a9507b0e21ef158b582030bd0ccb (
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
29
|
//
// AM3SController_V2.h
// iHealthDemoCode
//
// Created by user on 16/8/12.
// Copyright © 2016年 zhiwei jing. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
AM3SController_V2
*/
@interface AM3SController_V2 : NSObject
/**
* Initialize AM3S controller class
*/
+(AM3SController_V2 *)shareIHAM3SController;
/**
* Access control class instance after receiving AM3SConnectNoti, then use instance to call AM3S related communication methods
*/
-(NSArray *)getAllCurrentAM3SInstace;
@end
|