blob: bdc6f05d059f35422779becb50465cacc63e1fb2 (
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
29
30
31
32
|
//
// KN550BTController.h
// testShareCommunication
//
// Created by my on 8/10/13.
// Copyright (c) 2013年 my. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "BPController.h"
/**
KN550BT controller class
*/
@interface KN550BTController : BPController{
NSMutableArray *KN550BTDeviceArray;
}
/**
* Initialize KN550BT controller class
*/
+(KN550BTController *)shareKN550BTController;
/**
* Get all KN550BT instance,Access control class instance after receiving KN550BTConnectNoti, then use instance to call KN550BT related communication methods.
*/
-(NSArray *)getAllCurrentKN550BTInstace;
@end
|