25 lines
564 B
C
25 lines
564 B
C
|
|
//
|
||
|
|
// ENGGlucoDevice.h
|
||
|
|
// RNBTDevice
|
||
|
|
//
|
||
|
|
// Created by zcwmac on 2019/5/15.
|
||
|
|
// Copyright © 2019年 zmxv. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
#import "ENNativeDevice.h"
|
||
|
|
@protocol ENNativeDeviceProtocal;
|
||
|
|
@class BLEDevice;
|
||
|
|
@protocol ENGGlucoDeviceProtocal <ENNativeDeviceProtocal>
|
||
|
|
/** 获得血糖的结果 */
|
||
|
|
@optional
|
||
|
|
-(void)getResult:(NSDictionary *)result WithDevice:(BLEDevice *)device;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@class ENNativeDevice;
|
||
|
|
@interface ENGGlucoDevice : ENNativeDevice
|
||
|
|
//@property(nonatomic,weak)id<ENGGlucoDeviceProtocal>deviceDelegate;
|
||
|
|
@end
|