16 lines
367 B
C
16 lines
367 B
C
|
|
//
|
||
|
|
// ENHMDGlucoDevice.h
|
||
|
|
// ENBLEProject
|
||
|
|
//
|
||
|
|
// Created by lvwang2002 on 16/4/7.
|
||
|
|
// Copyright © 2016年 Facebook. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "ENNativeDevice.h"
|
||
|
|
|
||
|
|
@interface ENHMDGlucoDevice : ENNativeDevice
|
||
|
|
@end
|
||
|
|
@protocol ENHMDGlucoDeviceProtocal <ENNativeDeviceProtocal>
|
||
|
|
@optional
|
||
|
|
-(void)getResult:(NSDictionary *)result WithDevice:(BLEDevice *)device;
|
||
|
|
@end
|