blob: 781e830aea04ec27721ae3d39621c168f99aa08e (
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
|
//
// HS2Controller.h
// iHealthSDKStatic
//
// Created by ihealth on 2017/6/6.
// Copyright © 2017年 daiqingquan. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
HS2Controller
*/
@interface HS2Controller : NSObject
/**
* Initialize HS2 controller class
*/
+(HS2Controller *)shareIHHs2Controller;
/**
* Get all scale instance,use hsInstance to call HS related communication methods.
*/
-(NSArray *)getAllCurrentHS2Instace;
@end
|