blob: 57e436cc920a3792ec849125491c224144c52f07 (
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
|
//
// HS4Controller.h
// testShareCommunication
//
// Created by daiqingquan on 13-12-2.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
HS4Controller
*/
@interface HS4Controller : NSObject
/**
* Initialize HS4 controller class
*/
+(HS4Controller *)shareIHHs4Controller;
/**
* Get all scale instance,use hsInstance to call HS related communication methods.
*/
-(NSArray *)getAllCurrentHS4Instace;
@end
|