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
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
|