xm
2021-12-01 6d73bf6e816570291865674bef8bce8972e4de3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  ESPPeripheral.h
//  EspBlufi
//
//  Created by AE on 2020/6/15.
//  Copyright © 2020 espressif. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <CoreBluetooth/CoreBluetooth.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface ESPPeripheral : NSObject
 
@property(strong, nonatomic)CBPeripheral *peripheral;
@property(strong, nonatomic)NSString *name;
@property(strong, nonatomic)NSUUID *uuid;
@property(assign, nonatomic)int rssi;
 
- (instancetype)initWithPeripheral:(CBPeripheral *)peripheral;
 
@end
 
NS_ASSUME_NONNULL_END