blob: 77b512fd4247e220d38dbaae9bf1e0986a2bd8c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//
// BPBV10Device.h
// iHealthSDKStatic
//
// Created by Realank on 2017/9/26.
// Copyright © 2017年 ihealthSDK. All rights reserved.
//
#import "BPV24Device.h"
#import "BPLoopMeasureSettingModel.h"
typedef void(^BlockAskIDString)(NSString* IDString);
typedef void(^BlockAskLoopMeasureScheme)(BPLoopMeasureSettingResultModel* scheme);
/**
a subclass of BPBTLEDevice, which represent BP BTLE devices using BPBV10 protocol
*/
@interface BPBV10Device : BPV24Device
@end
|