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.

39 lines
697 B

2 years ago
//
// ECellPeripheralModel.h
// HPlusBluetooth_Example
//
// Created by lemo. on 2019/5/15.
// Copyright © 2019 chentingfeng. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CoreBluetooth/CoreBluetooth.h>
NS_ASSUME_NONNULL_BEGIN
@interface ECellPeripheralModel : NSObject
/**
| peripheral
*/
@property (nullable,nonatomic,strong) CBPeripheral *peripheral;
/**
| Bracelet name
*/
@property (nullable,nonatomic,copy ) NSString *name;
/**
uuid | Bracelet uuid
*/
@property (nullable,nonatomic,copy ) NSString *uuidStr;
/**
rssi | Bracelet rssi
*/
@property (nonatomic,assign) NSInteger rssi;
@end
NS_ASSUME_NONNULL_END