blob: 1d62f0bad1104a980285d404bb0e098b6aa71466 (
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
|
//
// PT3SBTController.h
// iHealthSDKStatic
//
// Created by user on 2020/9/7.
// Copyright © 2020 ihealthSDK. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface PT3SBTController : NSObject
/**
* Initialize PT3SBT controller class
*/
+(PT3SBTController *)shareIHPT3SBTController;
/**
* Get all scale instance,use hsInstance to call PT3SBT related communication methods.
*/
-(NSArray *)getAllCurrentPT3SBTInstace;
@end
NS_ASSUME_NONNULL_END
|