blob: 4eb42d8d6ce0214a788600632e3d82a7c45cdd01 (
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
|
//
// AM5Controller.h
// iHealthSDKStatic
//
// Created by user on 2019/7/2.
// Copyright © 2019 ihealthSDK. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface AM5Controller : NSObject
/**
* Initialize AM5 controller class
*/
+(AM5Controller *)shareAM5Controller;
/**
* Access control class instance after receiving AM5ConnectNoti, then use instance to call AM5 related communication methods
*/
-(NSArray *)getAllCurrentAM5Instace;
-(NSMutableDictionary *)getAllDiscoverAM5Instace;
@end
NS_ASSUME_NONNULL_END
|