blob: 548ea753de83f1eddf99e4c36045f3c65dd2792c (
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
|
//
// ECG3Controller.h
// CES2014ECG
//
// Created by 小翼 on 15/8/27.
// Copyright (c) 2015年 leed. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
ECG3Controller
*/
@interface ECG3Controller : NSObject
/**
* Initialize ECG3 controller class
*/
+(ECG3Controller *)shareECG3Controller;
/**
* Access control class instance after receiving ECG3ConnectNoti, then use instance to call ECG3 related communication methods
*/
-(NSArray *)getAllCurrentECG3Instace;
@end
|