You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// BLEBLDelegate.h
|
|
|
|
// BluetoothDemo
|
|
|
|
//
|
|
|
|
// Created by mac on 17/3/13.
|
|
|
|
// Copyright © 2017年 . All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "BlueToothEume_FireBoltt.h"
|
|
|
|
|
|
|
|
@class BLEBaseBlFireBoltt;
|
|
|
|
|
|
|
|
@protocol BLEBLDelegate <NSObject>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 业务处理完成回调方法
|
|
|
|
*/
|
|
|
|
- (void)finishedHandle:(BLEBaseBlFireBoltt*)bl data:(NSDictionary *)data cmd:(BleCMD_FireBoltt)cmd;
|
|
|
|
|
|
|
|
@optional
|
|
|
|
/**
|
|
|
|
* 业务处理失败回调方法
|
|
|
|
*/
|
|
|
|
- (void)failedHandle:(BLEBaseBlFireBoltt*)bl data:(NSDictionary *)data cmd:(BleCMD_FireBoltt)cmd;
|
|
|
|
|
|
|
|
@optional
|
|
|
|
/**
|
|
|
|
* 业务处理超时回调方法
|
|
|
|
*/
|
|
|
|
- (void)timeOutHandle:(BLEBaseBlFireBoltt*)bl data:(NSDictionary *)data cmd:(BleCMD_FireBoltt)cmd;
|
|
|
|
|
|
|
|
@end
|