blob: 5ccd4fd2cb0e417de5aeca2c3ea74ae91d2e11c2 (
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
|
//
// NT13BController.h
// iHealthSDKStatic
//
// Created by user on 2019/9/20.
// Copyright © 2019 ihealthSDK. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NT13BController : NSObject
/**
* Initialize NT13B controller class
*/
+(NT13BController *)shareIHNT13BController;
/**
* Access control class instance after receiving NT13BConnectNoti, then use instance to call NT13B related communication methods
*/
-(NSArray *)getAllCurrentNT13BInstace;
@end
NS_ASSUME_NONNULL_END
|