blob: 87586996670ebd30539536ba1dfa82f31f760353 (
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
|
//
// HS2SController.h
// iHealthSDKStatic
//
// Created by jing on 2019/4/30.
// Copyright © 2019 ihealthSDK. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
HS2SController
*/
@interface HS2SController : NSObject
/**
* Initialize HS2S controller class
*/
+(HS2SController *)shareIHHS2SController;
/**
* Get all scale instance,use hsInstance to call HS related communication methods.
*/
-(NSArray *)getAllCurrentHS2SInstace;
@end
NS_ASSUME_NONNULL_END
|