24 lines
461 B
C
24 lines
461 B
C
|
|
//
|
||
|
|
// MQGlucoseData.h
|
||
|
|
// RNBTDevice
|
||
|
|
//
|
||
|
|
// Created by lvwang2002 on 2019/4/19.
|
||
|
|
// Copyright © 2019 zmxv. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
#import "ENDynamicGlucoseDevice.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MQGlucoseData : NSObject
|
||
|
|
@property(nonatomic)unsigned short index;
|
||
|
|
@property(nonatomic)unsigned short originalElectric;
|
||
|
|
@property(nonatomic)float BGElectric;
|
||
|
|
@property(nonatomic)float power;
|
||
|
|
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|