| 12345678910111213141516171819202122232425262728293031 |
- //
- // BTLEDeivceModel.h
- // OneCable
- //
- // Created by KaRam Kim on 2017. 5. 17..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <CoreBluetooth/Corebluetooth.h>
- @interface BTLEDeivceModel : NSObject
- @property (nonatomic, strong) CBPeripheral *peripheralRef;
- @property (nonatomic, strong) NSDictionary *advertisementData;
- @property (nonatomic, strong) CBCentralManager *manager;
- @property (nonatomic, strong) NSNumber *RSSI;
- //@property (nonatomic, strong) NSString *advServices;
- //@property (nonatomic, strong) NSString *brcData;
- - (NSString*)advertisedServices;
- - (int)txPower;
- - (int)channel;
- - (BOOL)isConnectable;
- - (NSString*)name;
- - (NSString*)broadcastData;
- @end
|