blob: b54a062bb6212b6a73e01c8c2637fa273e4598a6 (
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
30
31
|
//
// AM4Controller.h
// iHealthApp3
//
// Created by 小翼 on 15/5/22.
// Copyright (c) 2015年 iHealth. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
AM4Controller
*/
@interface AM4Controller : NSObject
/**
* Initialize AM4 controller class
*/
+(AM4Controller *)shareIHAM4Controller;
/**
* Access control class instance after receiving AM4ConnectNoti, then use instance to call AM4 related communication methods
*/
-(NSArray *)getAllCurrentAM4Instace;
@end
|