30 lines
690 B
Objective-C
Executable File
30 lines
690 B
Objective-C
Executable File
//
|
|
// ENGlucoDevice.h
|
|
// ENBLEProject
|
|
//
|
|
// Created by lvwang2002 on 16/4/7.
|
|
// Copyright © 2016年 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "ENNativeDevice.h"
|
|
@protocol ENNativeDeviceProtocal;
|
|
@class BLEDevice;
|
|
@protocol ENGlucoDeviceProtocal <ENNativeDeviceProtocal>
|
|
/** 获得血糖的结果 */
|
|
@optional
|
|
-(void)getResult:(NSDictionary *)result WithDevice:(BLEDevice *)device;
|
|
|
|
/** 获得血酮的结果*/
|
|
@optional
|
|
-(void)getBloodKetoneResult:(NSDictionary *)result WithDevice:(BLEDevice *)device;
|
|
|
|
|
|
@end
|
|
|
|
@class ENNativeDevice;
|
|
@interface ENGlucoDevice : ENNativeDevice
|
|
//@property(nonatomic,weak)id<ENGlucoDeviceProtocal>deviceDelegate;
|
|
@end
|
|
|